| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 26 | public function testCreateViewWithParams() { |
||
| 27 | $view = ViewFactory::create('this-page-doent-exist', ['index']); |
||
| 28 | $this->assertTrue($view->exists()); |
||
| 29 | |||
| 30 | $viewInexistent = ViewFactory::create('this-page-doent-exist', ['page-doent-exist']); |
||
| 31 | $this->assertFalse($viewInexistent->exists()); |
||
| 32 | } |
||
| 33 | |||
| 35 |