| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function testUpdateCMSFields() |
||
| 15 | { |
||
| 16 | $fieldList = FieldList::create(); |
||
| 17 | $fieldList->push(TabSet::create("Root", Tab::create("Main"))); |
||
| 18 | $extension = Injector::inst()->get(SiteConfigExtension::class); |
||
| 19 | |||
| 20 | $extension->updateCMSFields($fieldList); |
||
| 21 | |||
| 22 | $this->assertNotNull($fieldList->dataFieldByName('MapsBrowserKey')); |
||
| 23 | $this->assertNotNull($fieldList->dataFieldByName('MapsServerKey')); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |