private/tests/Test-Assessment.21817.ps1
<# .SYNOPSIS #> function Test-Assessment-21817{ [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking Global Administrator role activation triggers an approval workflow" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21817' -Title "Global Administrator role activation triggers an approval workflow" ` -UserImpact Low -Risk High -ImplementationCost Medium ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |