icingaweb2-module-businessp.../test/php/library/Businessprocess/Web/Component/TabsTest.php

18 lines
413 B
PHP
Raw Normal View History

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