| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 55 | public function testSetDebugSetsValue() |
||
| 56 | { |
||
| 57 | $expectedValue = false; |
||
| 58 | $this->assertAttributeNotEquals($expectedValue, 'debug', $this->controller, 'Test prerequisite not met.'); |
||
| 59 | |||
| 60 | $this->controller->setDebug($expectedValue); |
||
| 61 | $this->assertAttributeEquals($expectedValue, 'debug', $this->controller); |
||
| 62 | } |
||
| 63 | } |
||
| 64 |