| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function test_http_client_construction() |
||
| 13 | { |
||
| 14 | $factory = $this->prophesize(InfluxDbClientFactory::class); |
||
| 15 | $factory->buildHttpClient()->shouldBeCalledTimes(1); |
||
| 16 | |||
| 17 | $reader = new ReaderClient($factory->reveal()); |
||
| 18 | |||
| 19 | $this->assertInstanceOf(ReaderInterface::class, $reader); |
||
| 20 | } |
||
| 21 | |||
| 23 |