MediaWiki master
UnlocatedTestException.php
Go to the documentation of this file.
1<?php
2
3declare( strict_types = 1 );
4
6
10class UnlocatedTestException extends \Exception {
11
12 public function __construct( TestDescriptor $testDescriptor, string $filename ) {
13 parent::__construct(
14 "Could not find file for class " . $testDescriptor->getFullClassname() .
15 " (expected .../$filename)"
16 );
17 }
18
19}
__construct(TestDescriptor $testDescriptor, string $filename)