1 | <?php |
||
25 | class Interface_Test extends TestCase |
||
26 | // @codingStandardsIgnoreEnd |
||
27 | { |
||
28 | /** @var Interface_ $fixture */ |
||
29 | private $fixture; |
||
30 | |||
31 | /** |
||
32 | * @var Fqsen |
||
33 | */ |
||
34 | private $fqsen; |
||
35 | |||
36 | /** |
||
37 | * @var DocBlock |
||
38 | */ |
||
39 | private $docBlock; |
||
40 | |||
41 | /** |
||
42 | * Creates a new (empty) fixture object. |
||
43 | */ |
||
44 | protected function setUp() |
||
50 | |||
51 | protected function tearDown() |
||
55 | |||
56 | /** |
||
57 | * @covers ::__construct |
||
58 | * @covers ::getFqsen |
||
59 | */ |
||
60 | public function testGetFqsen() |
||
64 | |||
65 | /** |
||
66 | * @covers ::__construct |
||
67 | * @covers ::getDocBlock |
||
68 | */ |
||
69 | public function testGetDocblock() |
||
73 | |||
74 | /** |
||
75 | * @covers ::addConstant |
||
76 | * @covers ::getConstants |
||
77 | */ |
||
78 | public function testSettingAndGettingConstants() |
||
88 | |||
89 | /** |
||
90 | * @covers ::addMethod |
||
91 | * @covers ::getMethods |
||
92 | */ |
||
93 | public function testSettingAndGettingMethods() |
||
103 | } |
||
104 |