Total Complexity | 3 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ElementListTest extends SapphireTest |
||
9 | { |
||
10 | public function testGetRelations() |
||
11 | { |
||
12 | $list = ElementList::create(); |
||
13 | |||
14 | $this->assertEquals(['Elements'], $list->getElementalRelations()); |
||
15 | } |
||
16 | |||
17 | public function testGetCmsFields() |
||
18 | { |
||
19 | // todo |
||
20 | } |
||
21 | |||
22 | public function testForTemplate() |
||
24 | // todo |
||
25 | } |
||
26 | } |
||
27 |