| 1 | <?php |
||
| 14 | class Suite extends ExecutableTest |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * A collection of test methods. |
||
| 18 | * |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | private $functions; |
||
| 22 | |||
| 23 | 57 | public function __construct(string $path, array $functions, string $fullyQualifiedClassName = null) |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Return the collection of test methods. |
||
| 31 | * |
||
| 32 | * @return array |
||
| 33 | */ |
||
| 34 | 4 | public function getFunctions(): array |
|
| 38 | |||
| 39 | /** |
||
| 40 | * Get the expected count of tests to be executed. |
||
| 41 | * |
||
| 42 | * @return int |
||
| 43 | */ |
||
| 44 | 15 | public function getTestCount(): int |
|
| 48 | } |
||
| 49 |