We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Code Lines | 5 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php | ||
| 19 | public function testItCanEnableAndDisableGroupedErrors() | ||
| 20 |     { | ||
| 21 |         $this->crudPanel->setOperation('create'); | ||
| 22 | $this->crudPanel->enableGroupedErrors(); | ||
| 23 | $this->assertTrue($this->crudPanel->groupedErrorsEnabled()); | ||
| 24 | $this->crudPanel->disableGroupedErrors(); | ||
| 25 | $this->assertFalse($this->crudPanel->groupedErrorsEnabled()); | ||
| 26 | } | ||
| 28 |