ffmpeg-mappable-media/tests/FFMpeg/Functional/FunctionalTestCase.php

17 lines
269 B
PHP
Raw Normal View History

2013-06-25 10:03:20 +02:00
<?php
namespace FFMpeg\Functional;
use FFMpeg\FFMpeg;
abstract class FunctionalTestCase extends \PHPUnit_Framework_TestCase
{
2013-12-02 12:47:27 +01:00
/**
* @return FFMpeg
*/
2013-06-25 10:03:20 +02:00
public function getFFMpeg()
{
return FFMpeg::create(array('timeout' => 300));
}
}