| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class LoadTest extends TestCase |
||
| 18 | { |
||
| 19 | public function testNotFound() |
||
| 20 | { |
||
| 21 | $e = new Environment(); |
||
| 22 | $d = new Directories(['root' => __DIR__ . '/..']); |
||
| 23 | |||
| 24 | $b = new DotenvBootloader(); |
||
| 25 | $b->boot($d, $e); |
||
| 26 | |||
| 27 | $this->assertNull($e->get('KEY')); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testFound() |
||
| 39 | } |
||
| 40 | |||
| 41 | public function testFoundCustom() |
||
| 53 | } |
||
| 54 | } |
||
| 55 |