2017-05-02 15:04:55 +00:00
|
|
|
<?php
|
2019-10-03 19:24:12 +00:00
|
|
|
|
2017-05-02 15:04:55 +00:00
|
|
|
/**
|
|
|
|
* PlaylistArchiveStreamTest class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Alltube\Test;
|
|
|
|
|
2019-04-22 19:06:05 +00:00
|
|
|
use Alltube\Stream\PlaylistArchiveStream;
|
2019-04-21 16:35:24 +00:00
|
|
|
use Alltube\Video;
|
2017-05-02 15:04:55 +00:00
|
|
|
|
|
|
|
/**
|
2019-04-22 19:52:21 +00:00
|
|
|
* Unit tests for the PlaylistArchiveStream class.
|
2019-10-26 14:13:08 +00:00
|
|
|
* @requires download
|
2017-05-02 15:04:55 +00:00
|
|
|
*/
|
2019-04-22 19:52:21 +00:00
|
|
|
class PlaylistArchiveStreamTest extends StreamTest
|
2017-05-02 15:04:55 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Prepare tests.
|
|
|
|
*/
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2019-04-21 16:30:02 +00:00
|
|
|
parent::setUp();
|
2019-04-20 22:34:12 +00:00
|
|
|
|
2019-04-21 16:30:02 +00:00
|
|
|
$video = new Video('https://www.youtube.com/playlist?list=PL1j4Ff8cAqPu5iowaeUAY8lRgkfT4RybJ');
|
2019-04-20 22:34:12 +00:00
|
|
|
|
2019-04-21 16:30:02 +00:00
|
|
|
$this->stream = new PlaylistArchiveStream($video);
|
2017-05-02 15:04:55 +00:00
|
|
|
}
|
|
|
|
}
|