TenantAtlas/apps/platform/tests/Feature/TenantConfiguration/Spec425EntraCertifiedNoTenantIdTest.php
ahmido 33e496c182 feat: complete spec 425 enta certified compare pack (#492)
Implements spec 425 with Entra certified compare pack support, coverage, guards, evaluator, fixtures, and tests.

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #492
2026-07-01 23:27:16 +00:00

15 lines
572 B
PHP

<?php
declare(strict_types=1);
it('Spec425 runtime changes do not introduce tenant id as Coverage v2 ownership truth', function (): void {
foreach ([
app_path('Services/TenantConfiguration/EntraCertifiedComparePackEvaluator.php'),
app_path('Services/TenantConfiguration/EntraCertifiedComparePackResult.php'),
app_path('Services/TenantConfiguration/SupportedScopeResolver.php'),
app_path('Services/TenantConfiguration/ClaimGuard.php'),
] as $path) {
expect(file_get_contents($path))->not->toContain('tenant_id');
}
});