private/tests/Test-Assessment.21929.ps1
<# .SYNOPSIS #> function Test-Assessment-21929{ [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking All entitlement management packages that apply to guests have expirations or access reviews configured in their assignment policies" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21929' -Title "All entitlement management packages that apply to guests have expirations or access reviews configured in their assignment policies" ` -UserImpact Medium -Risk Medium -ImplementationCost Medium ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |