Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class HydeKernelTest extends TestCase |
||
14 | { |
||
15 | public function test_kernel_singleton_can_be_accessed_by_service_container() |
||
16 | { |
||
17 | $this->assertSame(app(HydeKernelContract::class), app(HydeKernelContract::class)); |
||
18 | } |
||
19 | |||
20 | public function test_kernel_singleton_can_be_accessed_by_kernel_static_method() |
||
21 | { |
||
22 | $this->assertSame(app(HydeKernelContract::class), HydeKernel::getInstance()); |
||
23 | } |
||
24 | |||
25 | public function test_kernel_singleton_can_be_accessed_by_hyde_facade_method() |
||
28 | } |
||
29 | |||
30 | public function test_kernel_singleton_can_be_accessed_by_helper_function() |
||
33 | } |
||
34 | } |
||
35 |