private/tests/Test-Assessment.21780.ps1
<# .SYNOPSIS #> function Test-Assessment-21780{ [CmdletBinding()] param() Write-PSFMessage '🟦 Start' -Tag Test -Level VeryVerbose $activity = "Checking No usage of ADAL in the tenant" Write-ZtProgress -Activity $activity -Status "Getting policy" $result = $false $testResultMarkdown = "Planned for future release." $passed = $result Add-ZtTestResultDetail -TestId '21780' -Title "No usage of ADAL in the tenant" ` -UserImpact Low -Risk Medium -ImplementationCost High ` -AppliesTo Identity -Tag Identity ` -Status $passed -Result $testResultMarkdown -SkippedBecause UnderConstruction } |