Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function testFindByCompanyId() |
||
10 | { |
||
11 | $id = 10; |
||
12 | $body = '<people type="array"><person>1</person></people>'; |
||
13 | $repository = $this->getMockRepository('people', $body); |
||
14 | $repository->findByCompanyId($id); |
||
|
|||
15 | $this->assertSameLastRequestUri("/companies/$id/people.xml", $repository); |
||
16 | } |
||
18 |