ffmpeg-mappable-media/tests/FFMpeg/Functional/FunctionalTestCase.php
2013-12-02 14:05:18 +01:00

16 lines
269 B
PHP

<?php
namespace FFMpeg\Functional;
use FFMpeg\FFMpeg;
abstract class FunctionalTestCase extends \PHPUnit_Framework_TestCase
{
/**
* @return FFMpeg
*/
public function getFFMpeg()
{
return FFMpeg::create(array('timeout' => 300));
}
}