Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function testFindClosed() |
||
26 | { |
||
27 | $body = '<kases type="array"><kase><id>1</id></kase><kase><id>2</id></kase></kases>'; |
||
28 | $resource = $this->getMockResource('cases', $body); |
||
29 | $results = $resource->findClosed(); |
||
30 | $this->assertSameLastRequestUri('/kases/closed.xml', $resource); |
||
31 | $this->assertCount(2, $results); |
||
32 | } |
||
34 |