Cleanup phpunit configs and PSR-4 autoloading and namespaces for tests
This commit is contained in:
parent
d4db96662c
commit
f9c6316bad
59 changed files with 128 additions and 144 deletions
|
|
@ -1,5 +1,8 @@
|
|||
<?php
|
||||
|
||||
$loader = require __DIR__.'/../vendor/autoload.php';
|
||||
$loader->add('FFMpeg\Tests', __DIR__);
|
||||
$loader->add('FFMpeg\Functional', __DIR__);
|
||||
$file = __DIR__ . '/../vendor/autoload.php';
|
||||
if (!file_exists($file)) {
|
||||
throw new RuntimeException('Install dependencies to run test suite.');
|
||||
}
|
||||
|
||||
$autoload = require_once $file;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue