We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ 77-83 (lines=7) @@ | ||
74 | $this->assertContains($this->oneColumnArray, $this->crudPanel->columns); |
|
75 | } |
|
76 | ||
77 | public function testAddColumnsByName() |
|
78 | { |
|
79 | $this->crudPanel->addColumns(['column1', 'column2']); |
|
80 | ||
81 | $this->assertEquals(2, count($this->crudPanel->columns)); |
|
82 | $this->assertEquals($this->expectedTwoColumnsArray, $this->crudPanel->columns); |
|
83 | } |
|
84 | ||
85 | public function testAddColumnAsArray() |
|
86 | { |
|
@@ 235-242 (lines=8) @@ | ||
232 | $this->assertEquals($this->expectedThreeColumnsArray, $this->crudPanel->columns); |
|
233 | } |
|
234 | ||
235 | public function testOrderColumnsUnknownList() |
|
236 | { |
|
237 | $this->crudPanel->addColumns($this->threeColumnsArray); |
|
238 | ||
239 | $this->crudPanel->orderColumns(['column4', 'column5', 'column6']); |
|
240 | ||
241 | $this->assertEquals($this->expectedThreeColumnsArray, $this->crudPanel->columns); |
|
242 | } |
|
243 | ||
244 | public function testOrderColumnsMixedList() |
|
245 | { |