TabsTest: test rendering empty tabs

refs #81
This commit is contained in:
Thomas Gelf 2017-01-20 13:10:57 +01:00
parent 0b2f4f1c75
commit afa26301f4

View file

@ -0,0 +1,17 @@
<?php
namespace Tests\Icinga\Module\Businessprocess\Web\Component;
use Icinga\Module\Businessprocess\Web\Component\Tabs;
use Icinga\Module\Businessprocess\Test\BaseTestCase;
class TabsTest extends BaseTestCase
{
public function testEmptyTabsCanBeInstantiated()
{
$this->assertInstanceOf(
'Icinga\Module\Businessprocess\Web\Component\Tabs',
new Tabs()
);
}
}