1 | <?php declare(strict_types=1); |
||
24 | class SerializerTest extends TestCase |
||
25 | { |
||
26 | /** |
||
27 | * Call Mockery::close after each test. |
||
28 | */ |
||
29 | public function tearDown(): void |
||
33 | |||
34 | /** |
||
35 | * @covers ::__construct |
||
36 | * @covers ::getDocComment |
||
37 | * @uses phpDocumentor\Reflection\DocBlock\Description |
||
38 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
39 | * @uses phpDocumentor\Reflection\DocBlock |
||
40 | * @uses phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
41 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
42 | */ |
||
43 | public function testReconstructsADocCommentFromADocBlock(): void |
||
67 | |||
68 | /** |
||
69 | * @covers ::__construct |
||
70 | * @covers ::getDocComment |
||
71 | * @uses phpDocumentor\Reflection\DocBlock\Description |
||
72 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
73 | * @uses phpDocumentor\Reflection\DocBlock |
||
74 | * @uses phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
75 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
76 | */ |
||
77 | public function testAddPrefixToDocBlock(): void |
||
101 | |||
102 | /** |
||
103 | * @covers ::__construct |
||
104 | * @covers ::getDocComment |
||
105 | * @uses phpDocumentor\Reflection\DocBlock\Description |
||
106 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
107 | * @uses phpDocumentor\Reflection\DocBlock |
||
108 | * @uses phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
109 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
110 | */ |
||
111 | public function testAddPrefixToDocBlockExceptFirstLine(): void |
||
135 | |||
136 | /** |
||
137 | * @covers ::__construct |
||
138 | * @covers ::getDocComment |
||
139 | * @uses phpDocumentor\Reflection\DocBlock\Description |
||
140 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
141 | * @uses phpDocumentor\Reflection\DocBlock |
||
142 | * @uses phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
143 | * @uses phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
144 | */ |
||
145 | public function testWordwrapsAroundTheGivenAmountOfCharacters(): void |
||
175 | |||
176 | /** |
||
177 | * @covers ::__construct |
||
178 | * @covers ::getDocComment |
||
179 | */ |
||
180 | public function testNoExtraSpacesAfterTagRemoval() |
||
202 | } |
||
203 |