Total Complexity | 4 |
Total Lines | 57 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class AsyncTest extends TestCase |
||
17 | { |
||
18 | /** @var Async */ |
||
19 | private Async $async; |
||
20 | |||
21 | public function setUp(): void |
||
22 | { |
||
23 | $this->async = new Async(null, null, 0); |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @test |
||
28 | */ |
||
29 | public function add(): void |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @test |
||
47 | * @runTestsInSeparateProcesses |
||
48 | */ |
||
49 | public function then(): void |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * @test |
||
62 | * @runTestsInSeparateProcesses |
||
63 | */ |
||
64 | public function failed(): void |
||
75 |