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 | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | public function testItCanCreateAGroupOfCrudObjects() |
||
11 | { |
||
12 | $this->crudPanel->group( |
||
13 | $this->crudPanel->field('test'), |
||
14 | $this->crudPanel->field('test2') |
||
15 | )->label('testing'); |
||
|
|||
16 | |||
17 | $this->assertEquals('testing', $this->crudPanel->fields()['test']['label']); |
||
18 | $this->assertEquals('testing', $this->crudPanel->fields()['test2']['label']); |
||
19 | } |
||
32 |