| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function testClientModifiedOptions() |
||
| 27 | { |
||
| 28 | $client = GuzzleClient::createClient(['allow_redirects' => true, 'handler' => new MockHandler()]); |
||
| 29 | $this->assertSame(true, $client->getConfig()['allow_redirects']); |
||
| 30 | $this->assertInstanceOf(MockHandler::class, $client->getConfig()['handler']); |
||
| 31 | } |
||
| 32 | } |
||
| 33 |