1 | <?php |
||
26 | class Class_Test extends TestCase |
||
27 | // @codingStandardsIgnoreEnd |
||
28 | { |
||
29 | /** |
||
30 | * @var Class_ |
||
31 | */ |
||
32 | private $fixture; |
||
33 | |||
34 | /** |
||
35 | * @var Fqsen |
||
36 | */ |
||
37 | private $parent; |
||
38 | |||
39 | /** |
||
40 | * @var Fqsen |
||
41 | */ |
||
42 | private $fqsen; |
||
43 | |||
44 | /** |
||
45 | * @var DocBlock |
||
46 | */ |
||
47 | private $docBlock; |
||
48 | /** |
||
49 | * Creates a new (emoty) fixture object. |
||
50 | */ |
||
51 | protected function setUp() |
||
59 | |||
60 | protected function tearDown() |
||
64 | |||
65 | /** |
||
66 | * @covers ::getParent |
||
67 | * @covers ::__construct |
||
68 | */ |
||
69 | public function testGettingParent() |
||
77 | |||
78 | /** |
||
79 | * @covers ::getInterfaces |
||
80 | * @covers ::AddInterface |
||
81 | */ |
||
82 | public function testAddAndGettingInterfaces() |
||
92 | |||
93 | /** |
||
94 | * @covers ::getConstants |
||
95 | * @covers ::addConstant |
||
96 | */ |
||
97 | public function testAddAndGettingConstants() |
||
107 | |||
108 | /** |
||
109 | * @covers ::addProperty |
||
110 | * @covers ::getProperties |
||
111 | */ |
||
112 | public function testAddAndGettingProperties() |
||
122 | |||
123 | /** |
||
124 | * @covers ::addMethod |
||
125 | * @covers ::getMethods |
||
126 | */ |
||
127 | public function testAddAndGettingMethods() |
||
137 | |||
138 | /** |
||
139 | * @covers ::getUsedTraits |
||
140 | * @covers ::AddUsedTrait |
||
141 | */ |
||
142 | public function testAddAndGettingUsedTrait() |
||
152 | |||
153 | /** |
||
154 | * @covers ::isAbstract |
||
155 | * @covers ::__construct |
||
156 | */ |
||
157 | public function testGettingWhetherClassIsAbstract() |
||
165 | |||
166 | /** |
||
167 | * @covers ::isFinal |
||
168 | * @covers ::__construct |
||
169 | */ |
||
170 | public function testGettingWhetherClassIsFinal() |
||
178 | } |
||
179 |