Total Complexity | 3 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | final class TestJobs { |
||
12 | private JobTest $testCase; |
||
13 | |||
14 | public function __construct(JobTest $testCase) { |
||
15 | $this->testCase = $testCase; |
||
16 | } |
||
17 | |||
18 | public function test(): void { |
||
19 | $this->testCase->assertSame(1, 1); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * Test params for job |
||
24 | */ |
||
25 | public function testParams(array $params, string $text): void { |
||
28 | } |
||
29 | } |
||
30 | ?> |