| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class GroupSubsitesTest extends BaseSubsiteTest |
||
| 11 | { |
||
| 12 | protected static $fixture_file = 'SubsiteTest.yml'; |
||
| 13 | |||
| 14 | protected $requireDefaultRecordsFrom = [GroupSubsites::class]; |
||
| 15 | |||
| 16 | public function testTrivialFeatures() |
||
| 17 | { |
||
| 18 | $this->assertInternalType('array', singleton(GroupSubsites::class)->extraStatics()); |
||
| 19 | $this->assertInternalType('array', singleton(GroupSubsites::class)->providePermissions()); |
||
| 20 | $this->assertInstanceOf(FieldList::class, singleton(Group::class)->getCMSFields()); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testAlternateTreeTitle() |
||
| 36 | } |
||
| 37 | } |
||
| 38 |