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