1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-06-27 07:35:08 +02:00
alltube/tests/YoutubeStreamTest.php
2019-04-22 21:53:04 +02:00

28 lines
461 B
PHP

<?php
/**
* YoutubeStreamTest class.
*/
namespace Alltube\Test;
use Alltube\Stream\YoutubeStream;
use Alltube\Video;
/**
* Unit tests for the YoutubeStream class.
*/
class YoutubeStreamTest extends StreamTest
{
/**
* Prepare tests.
*/
protected function setUp()
{
parent::setUp();
$video = new Video('https://www.youtube.com/watch?v=dQw4w9WgXcQ', '135');
$this->stream = new YoutubeStream($video);
}
}