| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function execute(TestInfo $testInfo): void |
||
| 26 | { |
||
| 27 | $configUri = sprintf('%s/%s/%s/.well-known/openid-configuration', $testInfo->getRoot(), $testInfo->getRpId(), $this->getTestId()); |
||
| 28 | $issuer = (new IssuerBuilder()) |
||
| 29 | ->build($configUri); |
||
| 30 | |||
| 31 | Assert::assertCount(4, $issuer->getJwksProvider()->getJwks()['keys'] ?? []); |
||
| 32 | } |
||
| 34 |