Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function testShouldReturnNullOnGetAuthorization(): void |
||
15 | { |
||
16 | $client = $this->prophesize(ClientInterface::class); |
||
17 | $request = $this->prophesize(OAuth2RequestInterface::class); |
||
18 | |||
19 | $provider = new NullProvider(); |
||
20 | |||
21 | $this->assertNull($provider->getAuthorization($client->reveal(), $request->reveal())); |
||
22 | } |
||
23 | } |
||
24 |