private/tests/Test-Assessment.21822.ps1
<# .SYNOPSIS #> function Test-Assessment-21822{ [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking Guest access is limited to approved tenants" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21822' -Title "Guest access is limited to approved tenants" ` -UserImpact Medium -Risk Medium -ImplementationCost High ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |