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 |
||
21 | public function testItCanCreateAGroupOfCrudObjectsFromArrayInput() |
||
22 | { |
||
23 | $this->crudPanel->group([ |
||
24 | $this->crudPanel->field('test'), |
||
25 | $this->crudPanel->field('test2'), |
||
26 | ])->label('testing'); |
||
27 | |||
28 | $this->assertEquals('testing', $this->crudPanel->fields()['test']['label']); |
||
29 | $this->assertEquals('testing', $this->crudPanel->fields()['test2']['label']); |
||
30 | } |
||
32 |