3, 'box_color' => 'green', 'select_type' => null, 'show_about' => true, 'chart' => [ 'background_color' => 'rgba(0,115,183,0.7)', 'border_color' => '#3b8bba', 'grid_color' => 'rgba(0,0,0,.05)', 'height' => '200' ], 'branding' => [ 'logo' => null, 'mini' => null, 'company' => null, 'title' => null, ], 'tags_create' => true, ]; } public function testPrefix() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertEquals('theme', $sut->getPrefix()); } public function testConfigs() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertTrue($sut->isAllowTagCreation()); $this->assertNull($sut->getTitle()); } /** * @group legacy */ public function testDeprecations() { $sut = $this->getSut($this->getDefaultSettings(), []); $this->assertEquals('', $sut->getSelectPicker()); $this->assertFalse($sut->isAutoReloadDatatable()); } }