Public/Testing/Security/Test-EdenServiceSecurity.ps1
function Test-EdenServiceSecurity { <# .SYNOPSIS Testing security. .DESCRIPTION Testing security. by calling the local './Eden/Testing/Security/Test-ServiceSecurity.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "Testing/Security/Test-ServiceSecurity" ` -SettingsName $SettingsName ` -CommandGroup "Testing Security" ` -Message "Testing security." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tst ` -Value Test-EdenServiceSecurity ` -Force |