Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class CallsTest extends CommonTestClass |
||
11 | { |
||
12 | /** |
||
13 | * @throws MimeException |
||
14 | * @requires function mime_content_type |
||
15 | */ |
||
16 | public function testClass(): void |
||
17 | { |
||
18 | $lib = new XCalls(); |
||
19 | $lib->checkMimeClass(); |
||
20 | $this->assertTrue(true); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @throws MimeException |
||
25 | * @requires function mime_content_type |
||
26 | */ |
||
27 | public function testMethod(): void |
||
28 | { |
||
29 | $lib = new XCalls(); |
||
30 | $lib->checkMimeMethod(); |
||
31 | $this->assertTrue(true); |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @throws MimeException |
||
36 | * @requires function mime_content_type |
||
37 | */ |
||
38 | public function testFunction(): void |
||
43 | } |
||
44 | } |
||
45 |