Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class DocBlockParserTest extends TestCase |
||
11 | { |
||
12 | private DocBlockParser $parser; |
||
13 | |||
14 | protected function setUp(): void |
||
17 | } |
||
18 | |||
19 | public function test_get_class_from_empty_doc_block(): void |
||
20 | { |
||
21 | $input = ''; |
||
22 | self::assertSame('', $this->parser->getClassFromMethod($input, 'getClass()')); |
||
23 | } |
||
24 | |||
25 | public function test_get_class_from_method(): void |
||
35 | ); |
||
36 | } |
||
38 |