We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ 69-75 (lines=7) @@ | ||
66 | ], |
|
67 | ]; |
|
68 | ||
69 | public function testAddColumnByName() |
|
70 | { |
|
71 | $this->crudPanel->addColumn('column1'); |
|
72 | ||
73 | $this->assertEquals(1, count($this->crudPanel->columns)); |
|
74 | $this->assertContains($this->oneColumnArray, $this->crudPanel->columns); |
|
75 | } |
|
76 | ||
77 | public function testAddColumnsByName() |
|
78 | { |
|
@@ 85-91 (lines=7) @@ | ||
82 | $this->assertEquals($this->expectedTwoColumnsArray, $this->crudPanel->columns); |
|
83 | } |
|
84 | ||
85 | public function testAddColumnAsArray() |
|
86 | { |
|
87 | $this->crudPanel->addColumn($this->oneColumnArray); |
|
88 | ||
89 | $this->assertEquals(1, count($this->crudPanel->columns)); |
|
90 | $this->assertContains($this->oneColumnArray, $this->crudPanel->columns); |
|
91 | } |
|
92 | ||
93 | public function testAddColumnsAsArray() |
|
94 | { |