Alltube\Test\VideoDownloadTest::testGetAudioStreamAvconvError PHP Method

testGetAudioStreamAvconvError() public method

Test getAudioStream function without avconv.
public testGetAudioStreamAvconvError ( string $url, string $format ) : void
$url string URL
$format string Format
return void
    public function testGetAudioStreamAvconvError($url, $format)
    {
        $config = \Alltube\Config::getInstance();
        $config->avconv = 'foobar';
        $this->download->getAudioStream($url, $format);
    }