Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 8 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | View Code Duplication | public function testFailIfEvaluatorReturnsTrue() |
|
16 | { |
||
17 | $mock = $this->createMock(); |
||
18 | $this->mockReturns($mock, true); |
||
19 | $evaluator = new LogicalNot($mock); |
||
20 | |||
21 | $this->assertFalse($evaluator->is('2014-01-01')); |
||
22 | } |
||
23 | |||
33 | } |