1 | <?php |
||
25 | class PropertyTest extends TestCase |
||
26 | { |
||
27 | /** |
||
28 | * @var Fqsen |
||
29 | */ |
||
30 | private $fqsen; |
||
31 | |||
32 | /** |
||
33 | * @var Visibility |
||
34 | */ |
||
35 | private $visibility; |
||
36 | |||
37 | /** |
||
38 | * @var DocBlock |
||
39 | */ |
||
40 | private $docBlock; |
||
41 | |||
42 | protected function setUp() |
||
48 | |||
49 | protected function tearDown() |
||
53 | |||
54 | /** |
||
55 | * @covers ::getFqsen |
||
56 | * @covers ::getName |
||
57 | * @covers ::__construct |
||
58 | */ |
||
59 | public function testGetFqsenAndGetName() |
||
66 | |||
67 | /** |
||
68 | * @covers ::isStatic |
||
69 | * @covers ::__construct |
||
70 | */ |
||
71 | public function testGettingWhetherPropertyIsStatic() |
||
79 | |||
80 | /** |
||
81 | * @covers ::getVisibility |
||
82 | * @covers ::__construct |
||
83 | */ |
||
84 | public function testGettingVisibility() |
||
90 | |||
91 | /** |
||
92 | * @covers ::getTypes |
||
93 | * @covers ::addType |
||
94 | */ |
||
95 | public function testSetAndGetTypes() |
||
103 | |||
104 | /** |
||
105 | * @covers ::getDefault |
||
106 | * @covers ::__construct |
||
107 | */ |
||
108 | public function testGetDefault() |
||
116 | |||
117 | /** |
||
118 | * @covers ::getDocBlock |
||
119 | * @covers ::__construct |
||
120 | */ |
||
121 | public function testGetDocBlock() |
||
126 | } |
||
127 |