Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class CatalogCategoryTest extends SapphireTest |
||
11 | { |
||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected static $fixture_file = 'fixtures.yml'; |
||
16 | |||
17 | /** |
||
18 | * |
||
19 | */ |
||
20 | public function testGetCMSFields() |
||
21 | { |
||
22 | $object = $this->objFromFixture(CatalogCategory::class, 'default'); |
||
23 | $fields = $object->getCMSFields(); |
||
24 | $this->assertInstanceOf(FieldList::class, $fields); |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * |
||
29 | */ |
||
30 | public function testGetProductList() |
||
34 | } |
||
35 | } |
||
36 |