class TestFileNotFoundException
@no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
@internal This class is not covered by the backward compatibility promise for PHPUnit
Hierarchy
- class \PHPUnit\TextUI\TestFileNotFoundException extends \RuntimeException implements \PHPUnit\TextUI\Exception
Expanded class hierarchy of TestFileNotFoundException
2 files declare their use of TestFileNotFoundException
- TestSuiteBuilder.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ TestSuiteBuilder.php - TestSuiteMapper.php in vendor/
phpunit/ phpunit/ src/ TextUI/ Configuration/ Xml/ TestSuiteMapper.php
File
-
vendor/
phpunit/ phpunit/ src/ TextUI/ Exception/ TestFileNotFoundException.php, line 20
Namespace
PHPUnit\TextUIView source
final class TestFileNotFoundException extends RuntimeException implements Exception {
public function __construct(string $path) {
parent::__construct(sprintf('Test file "%s" not found', $path));
}
}