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