mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-23 08:09:37 -05:00
18 lines
413 B
PHP
18 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()
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|