1 | <?php |
||
24 | class DescriptionTest extends TestCase |
||
25 | { |
||
26 | /** |
||
27 | * Call Mockery::close after each test. |
||
28 | */ |
||
29 | public function tearDown() : void |
||
33 | |||
34 | /** |
||
35 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
36 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
37 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
38 | * |
||
39 | * @covers ::__construct |
||
40 | * @covers ::render |
||
41 | */ |
||
42 | public function testDescriptionCanRenderUsingABodyWithPlaceholdersAndTags() : void |
||
58 | |||
59 | /** |
||
60 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
61 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
62 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
63 | * |
||
64 | * @covers ::__construct |
||
65 | * @covers ::render |
||
66 | * @covers ::__toString |
||
67 | */ |
||
68 | public function testDescriptionCanBeCastToString() : void |
||
78 | |||
79 | /** |
||
80 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
81 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
82 | * |
||
83 | * @covers ::getTags |
||
84 | */ |
||
85 | public function testDescriptionTagsGetter() : void |
||
106 | |||
107 | /** |
||
108 | * @covers ::getBodyTemplate |
||
109 | */ |
||
110 | public function testDescriptionBodyTemplateGetter() : void |
||
118 | |||
119 | /** |
||
120 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Generic |
||
121 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\BaseTag |
||
122 | * @uses \phpDocumentor\Reflection\DocBlock\Tags\Formatter\PassthroughFormatter |
||
123 | * |
||
124 | * @covers ::__construct |
||
125 | * @covers ::render |
||
126 | * @covers ::__toString |
||
127 | */ |
||
128 | public function testDescriptionMultipleTagsCanBeCastToString() : void |
||
145 | } |
||
146 |