create('tab', array('name' => 'TEST')); $this->assertInstanceOf('Icinga\Web\Widget\Tab', $widget); } /** * @expectedException Icinga\Exception\ProgrammingError * @expectedExceptionMessage There is no such widget: DOES_NOT_EXIST */ public function testFail1() { $widgetCreator = new Widget(); $widget = $widgetCreator->create('DOES_NOT_EXIST'); } }