1 | <?php |
||
7 | class AliasManagerTest extends TestCase |
||
8 | { |
||
9 | /** |
||
10 | * @covers \PHPSA\AliasManager::__construct |
||
11 | */ |
||
12 | public function testConstructorWithNamespace() |
||
19 | |||
20 | /** |
||
21 | * @covers \PHPSA\AliasManager::__construct |
||
22 | */ |
||
23 | public function testConstructorWithoutNamespace() |
||
30 | |||
31 | /** |
||
32 | * @covers \PHPSA\AliasManager::getNamespace |
||
33 | * @covers \PHPSA\AliasManager::setNamespace |
||
34 | * @depends testConstructorWithNamespace |
||
35 | */ |
||
36 | public function testNamespaceGetterSetter() |
||
43 | |||
44 | /** |
||
45 | * @covers \PHPSA\AliasManager::add |
||
46 | */ |
||
47 | public function testAddNamespace() |
||
53 | |||
54 | /** |
||
55 | * @covers \PHPSA\AliasManager::isClassImported |
||
56 | * @depends testAddNamespace |
||
57 | */ |
||
58 | public function testIsClassImported() |
||
69 | } |
||
70 |