Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class HydeHelperFacadeTest extends TestCase |
||
13 | { |
||
14 | public function test_features_facade_returns_instance_of_features_class() |
||
15 | { |
||
16 | $this->assertInstanceOf( |
||
17 | Features::class, |
||
18 | Hyde::features() |
||
19 | ); |
||
20 | } |
||
21 | |||
22 | public function test_features_facade_can_be_used_to_call_static_methods_on_features_class() |
||
26 | ); |
||
27 | } |
||
28 | |||
29 | public function test_hyde_has_feature_shorthand_calls_static_method_on_features_class() |
||
36 |