| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | public function testMinimalConstructor(): void |
||
| 15 | { |
||
| 16 | $metadata = $this->prophesize(IssuerMetadataInterface::class); |
||
| 17 | $jwksProvider = $this->prophesize(JwksProviderInterface::class); |
||
| 18 | |||
| 19 | $issuer = new Issuer( |
||
| 20 | $metadata->reveal(), |
||
| 21 | $jwksProvider->reveal() |
||
| 22 | ); |
||
| 23 | |||
| 24 | static::assertSame($metadata->reveal(), $issuer->getMetadata()); |
||
| 25 | static::assertSame($jwksProvider->reveal(), $issuer->getJwksProvider()); |
||
| 26 | } |
||
| 28 |