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 | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class CrudPanelErrorsTest extends BaseCrudPanelTest |
||
9 | { |
||
10 | public function testItCanEnableAndDisableInlineErrors() |
||
11 | { |
||
12 | $this->crudPanel->setOperation('create'); |
||
13 | $this->crudPanel->enableInlineErrors(); |
||
14 | $this->assertTrue($this->crudPanel->inlineErrorsEnabled()); |
||
15 | $this->crudPanel->disableInlineErrors(); |
||
16 | $this->assertFalse($this->crudPanel->inlineErrorsEnabled()); |
||
17 | } |
||
18 | |||
19 | public function testItCanEnableAndDisableGroupedErrors() |
||
26 | } |
||
27 | } |
||
28 |