ffmpeg-mappable-media/tests/FFMpeg/Functional/FunctionalTestCase.php
Romain Neutron ad3a5af623 Version 0.3
2013-06-25 10:03:20 +02:00

13 lines
231 B
PHP

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