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