| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 56 | public function testBasicTest() |
||
| 57 | { |
||
| 58 | // create String Helper |
||
| 59 | foreach ($this->PACKAGE_CLASSES as $PACKAGE_CLASS) { |
||
| 60 | ${$PACKAGE_CLASS} = $this->app->make($PACKAGE_CLASS); |
||
| 61 | } |
||
| 62 | |||
| 63 | $testArray = [ |
||
| 64 | 'key1' => 'value1', |
||
| 65 | 'key2' => [ |
||
| 66 | 'key21' => 'value21', |
||
| 67 | ] |
||
| 68 | ]; |
||
| 69 | |||
| 70 | $this->assertTrue(true); |
||
| 71 | } |
||
| 73 |