1 | <?php |
||
25 | class Trait_Test extends TestCase |
||
26 | // @codingStandardsIgnoreEnd |
||
27 | { |
||
28 | /** @var Trait_ $fixture */ |
||
29 | protected $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() |
||
51 | |||
52 | protected function tearDown() |
||
56 | |||
57 | /** |
||
58 | * @covers ::getFqsen |
||
59 | * @covers ::getName |
||
60 | * @covers ::__construct |
||
61 | */ |
||
62 | public function testGetFqsenAndGetName() |
||
67 | |||
68 | /** |
||
69 | * @covers ::addProperty |
||
70 | * @covers ::getProperties |
||
71 | */ |
||
72 | public function testAddAndGettingProperties() |
||
82 | |||
83 | /** |
||
84 | * @covers ::addMethod |
||
85 | * @covers ::getMethods |
||
86 | */ |
||
87 | public function testAddAndGettingMethods() |
||
97 | |||
98 | /** |
||
99 | * @covers ::getUsedTraits |
||
100 | * @covers ::AddUsedTrait |
||
101 | */ |
||
102 | public function testAddAndGettingUsedTrait() |
||
112 | |||
113 | /** |
||
114 | * @covers ::__construct |
||
115 | * @covers ::getDocBlock |
||
116 | */ |
||
117 | public function testGetDocblock() |
||
121 | } |
||
122 |