summaryrefslogtreecommitdiffstats
path: root/test/php/library/Businessprocess/Web/Component/TabsTest.php
blob: f1181d272f078fa3f807d20b626ae35d5eb5a293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()
        );
    }
}