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