icingaweb2-module-businessp.../test/php/library/Businessprocess/Web/Component/TabsTest.php
2017-01-20 13:17:28 +01:00

17 lines
413 B
PHP

<?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()
);
}
}