2019-04-22 19:52:21 +00:00
|
|
|
<?php
|
2019-10-03 19:24:12 +00:00
|
|
|
|
2019-04-22 19:52:21 +00:00
|
|
|
/**
|
|
|
|
* YoutubeChunkStreamTest class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Alltube\Test;
|
|
|
|
|
|
|
|
use Alltube\Stream\YoutubeChunkStream;
|
|
|
|
use Alltube\Video;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for the YoutubeChunkStream class.
|
2019-10-26 14:13:08 +00:00
|
|
|
* @requires download
|
2019-04-22 19:52:21 +00:00
|
|
|
*/
|
|
|
|
class YoutubeChunkStreamTest extends StreamTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Prepare tests.
|
|
|
|
*/
|
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$video = new Video('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
|
|
|
|
|
|
|
|
$this->stream = new YoutubeChunkStream($video->getHttpResponse());
|
|
|
|
}
|
|
|
|
}
|