mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-01-24 21:12:53 -05:00
parent
0b2f4f1c75
commit
afa26301f4
1 changed files with 17 additions and 0 deletions
17
test/php/library/Businessprocess/Web/Component/TabsTest.php
Normal file
17
test/php/library/Businessprocess/Web/Component/TabsTest.php
Normal 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()
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue