1 | <?php |
||
18 | class SectionDataTypeTest extends Unit |
||
19 | { |
||
20 | /** |
||
21 | * @var SectionDataType |
||
22 | */ |
||
23 | private $dataType; |
||
24 | |||
25 | /** |
||
26 | * Set the dataType. |
||
27 | * |
||
28 | * @SuppressWarnings(PHPMD.CamelCaseMethodName) |
||
29 | */ |
||
30 | protected function _before() |
||
34 | |||
35 | //============================================================================================================== |
||
36 | //================================================= TESTS ==================================================== |
||
37 | //============================================================================================================== |
||
38 | |||
39 | /** |
||
40 | * Get mapper handle test. |
||
41 | */ |
||
42 | public function testGetMapperHandle() |
||
48 | |||
49 | /** |
||
50 | * Get records test. |
||
51 | */ |
||
52 | public function testGetRecords() |
||
64 | |||
65 | //============================================================================================================== |
||
66 | //================================================ HELPERS =================================================== |
||
67 | //============================================================================================================== |
||
68 | |||
69 | /** |
||
70 | * @return Mock|Section |
||
71 | */ |
||
72 | private function getMockSection() |
||
76 | } |
||
77 |