Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class UpDownCheckTest extends TestCase |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @test |
||
24 | */ |
||
25 | public function testCheckMethodReturnsCheckObject() |
||
26 | { |
||
27 | |||
28 | $this->assertInstanceOf(Check::class, updown()->Check()); |
||
|
|||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @test |
||
33 | */ |
||
34 | public function testCheckMethodWithTokenReturnsCheckObjectWithTokenAsId() |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * @return void |
||
43 | */ |
||
44 | public function setUp(): void |
||
48 | |||
49 | } |
||
50 | } |