Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | public function itPreparesARequestForExecution() |
||
14 | { |
||
15 | $client = new SomeClient(); |
||
16 | $client->prepareRequest('GET', 'http://example.com/api'); |
||
17 | |||
18 | $this->assertSame('GET', $client->getRequest()->getMethod()); |
||
19 | $this->assertSame('http://example.com/api', $client->getRequest()->getUri()); |
||
20 | } |
||
36 | } |