Total Complexity | 5 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | class CoreTest extends TestCase |
||
17 | { |
||
18 | use DisableRefreshDatabase; |
||
19 | |||
20 | public function testGetModules() |
||
25 | } |
||
26 | } |
||
27 | |||
28 | public function testGetModuleNames() |
||
32 | } |
||
33 | |||
34 | public function testUserNamespace() |
||
35 | { |
||
36 | $module = Larapi::getModule('user'); |
||
37 | $this->assertEquals('Modules\User', $module->getNamespace()); |
||
38 | } |
||
39 | |||
40 | public function testAmountOfUserModels() |
||
45 | } |
||
46 | } |
||
47 |