Alltube\Test\VideoDownloadTest::testGetAudioStream PHP Method

testGetAudioStream() public method

Test getAudioStream function.
public testGetAudioStream ( string $url, string $format ) : void
$url string URL
$format string Format
return void
    public function testGetAudioStream($url, $format)
    {
        $stream = $this->download->getAudioStream($url, $format);
        $this->assertInternalType('resource', $stream);
        $this->assertFalse(feof($stream));
    }