We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class CrudPanelReorderTest extends BaseCrudPanel |
||
11 | { |
||
12 | public function testEnableReorder() |
||
13 | { |
||
14 | $this->crudPanel->enableReorder(); |
||
15 | |||
16 | $this->assertTrue($this->crudPanel->getOperationSetting('enabled')); |
||
17 | $this->assertEquals('name', $this->crudPanel->getOperationSetting('label')); |
||
18 | $this->assertEquals(1, $this->crudPanel->getOperationSetting('max_level')); |
||
19 | } |
||
20 | |||
21 | public function testDisableReorder() |
||
30 | } |
||
31 | } |
||
32 |