You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
632 B
21 lines
632 B
#!/usr/bin/env php
|
|
<?php
|
|
|
|
if (!file_exists(dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit')) {
|
|
echo "Unable to find the `simple-phpunit` script in `vendor/symfony/phpunit-bridge/bin/`.\n";
|
|
exit(1);
|
|
}
|
|
|
|
$classLoader = require dirname(__DIR__).'/vendor/autoload.php';
|
|
App\Kernel::bootstrapEnv('test');
|
|
$classLoader->unregister();
|
|
|
|
if (false === getenv('SYMFONY_PHPUNIT_REMOVE')) {
|
|
putenv('SYMFONY_PHPUNIT_REMOVE=');
|
|
}
|
|
if (false === getenv('SYMFONY_PHPUNIT_DIR')) {
|
|
putenv('SYMFONY_PHPUNIT_DIR='.__DIR__.'/.phpunit');
|
|
}
|
|
|
|
require dirname(__DIR__).'/vendor/symfony/phpunit-bridge/bin/simple-phpunit';
|