alltube/tests/PlaylistArchiveStreamTest.php

29 lines
524 B
PHP
Raw Normal View History

2017-05-02 17:04:55 +02:00
<?php
2017-05-02 17:04:55 +02:00
/**
* PlaylistArchiveStreamTest class.
*/
namespace Alltube\Test;
use Alltube\Stream\PlaylistArchiveStream;
2019-04-21 18:35:24 +02:00
use Alltube\Video;
2017-05-02 17:04:55 +02:00
/**
* Unit tests for the PlaylistArchiveStream class.
2017-05-02 17:04:55 +02:00
*/
class PlaylistArchiveStreamTest extends StreamTest
2017-05-02 17:04:55 +02:00
{
/**
* Prepare tests.
*/
protected function setUp()
{
parent::setUp();
$video = new Video('https://www.youtube.com/playlist?list=PL1j4Ff8cAqPu5iowaeUAY8lRgkfT4RybJ');
$this->stream = new PlaylistArchiveStream($video);
2017-05-02 17:04:55 +02:00
}
}