1--TEST--
2phpunit --configuration tests/_files/phpunit-example-extension
3--FILE--
4<?php
5$_SERVER['argv'][1] = '--configuration';
6$_SERVER['argv'][2] = __DIR__ . '/../_files/phpunit-example-extension';
7$_SERVER['argv'][3] = '--no-extensions';
8
9require __DIR__ . '/../bootstrap.php';
10PHPUnit_TextUI_Command::main();
11--EXPECTF--
12Fatal error: Trait 'PHPUnit\ExampleExtension\TestCaseTrait' not found in %s
13