Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function testItConstructWithOrWithoutClient() |
||
23 | { |
||
24 | $auth = new JsonFileServiceAuth(); |
||
25 | $this->assertInstanceOf(JsonFileServiceAuth::class, $auth); |
||
26 | |||
27 | $auth = new JsonFileServiceAuth($this->prophesize(ClientInterface::class)->reveal()); |
||
28 | $this->assertInstanceOf(JsonFileServiceAuth::class, $auth); |
||
29 | } |
||
30 | |||
45 |