1 | <?php |
||
37 | class TableConfigurationTest extends UnitTestCase |
||
|
|||
38 | { |
||
39 | use Language, AccessibleTraitForTest; |
||
40 | |||
41 | /** |
||
42 | * subject |
||
43 | * |
||
44 | * @var TableConfiguration $subject |
||
45 | */ |
||
46 | protected $subject; |
||
47 | |||
48 | /** |
||
49 | * TABLE |
||
50 | */ |
||
51 | const TABLE = 'pages'; |
||
52 | |||
53 | /** |
||
54 | * setUp |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | public function setUp() |
||
93 | |||
94 | /** |
||
95 | * tableConfigurationContainsArray |
||
96 | * |
||
97 | * @test |
||
98 | */ |
||
99 | public function tableConfigurationContainsArray() |
||
104 | |||
105 | /** |
||
106 | * tablePropertyContainsString |
||
107 | * |
||
108 | * @test |
||
109 | */ |
||
110 | public function tablePropertyContainsString() |
||
115 | |||
116 | /** |
||
117 | * getNameReturnsTableName |
||
118 | * |
||
119 | * @test |
||
120 | */ |
||
121 | public function getNameReturnsTableName() |
||
125 | |||
126 | /** |
||
127 | * getTitleReturnsTitleOfTable |
||
128 | * |
||
129 | * @test |
||
130 | */ |
||
131 | public function getTitleReturnsTitleOfTable() |
||
135 | |||
136 | /** |
||
137 | * getColumnsReturnsArray |
||
138 | * |
||
139 | * @test |
||
140 | */ |
||
141 | public function getColumnsReturnsArray() |
||
145 | |||
146 | /** |
||
147 | * getColumnConfigurationThrowsExceptionWhenTableNotExist |
||
148 | * |
||
149 | * @test |
||
150 | */ |
||
151 | public function getColumnConfigurationThrowsExceptionWhenTableNotExist() |
||
160 | |||
161 | /** |
||
162 | * getColumnConfigurationReturnsArray |
||
163 | * |
||
164 | * @test |
||
165 | */ |
||
166 | public function getColumnConfigurationReturnsArray() |
||
178 | |||
179 | /** |
||
180 | * getAllTablesReturnsArray |
||
181 | * |
||
182 | * @test |
||
183 | */ |
||
184 | public function getAllTablesReturnsArray() |
||
188 | } |
||
189 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.