| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 49 | public function testGetNbResults() |
||
| 50 | { |
||
| 51 | $this->query |
||
| 52 | ->expects($this->once()) |
||
| 53 | ->method('offset') |
||
| 54 | ->with(0); |
||
| 55 | $this->query |
||
| 56 | ->expects($this->once()) |
||
| 57 | ->method('count') |
||
| 58 | ->will($this->returnValue(100)); |
||
| 59 | |||
| 60 | $this->assertSame(100, $this->adapter->getNbResults()); |
||
| 61 | } |
||
| 62 | |||
| 85 |