Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function testFindAll() |
||
8 | { |
||
9 | $body = '<kases type="array"><kase><id>1</id></kase><kase><id>2</id></kase></kases>'; |
||
10 | $resource = $this->getMockResource('cases', $body); |
||
11 | $results = $resource->findAll(); |
||
12 | $this->assertSameLastRequestUri('/kases/open.xml', $resource); |
||
13 | $this->assertCount(2, $results); |
||
14 | } |
||
34 |