31 lines
567 B
PHP
31 lines
567 B
PHP
<?php
|
|
|
|
/**
|
|
* YoutubeChunkStreamTest class.
|
|
*/
|
|
|
|
namespace Alltube\Test;
|
|
|
|
use Alltube\Stream\YoutubeChunkStream;
|
|
use Alltube\Video;
|
|
use Exception;
|
|
|
|
/**
|
|
* Unit tests for the YoutubeChunkStream class.
|
|
* @requires download
|
|
*/
|
|
class YoutubeChunkStreamTest extends StreamTest
|
|
{
|
|
/**
|
|
* Prepare tests.
|
|
* @throws Exception
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$video = new Video('https://www.youtube.com/watch?v=dQw4w9WgXcQ');
|
|
|
|
$this->stream = new YoutubeChunkStream($video->getHttpResponse());
|
|
}
|
|
}
|