Public/Testing/Security/Publish-EdenServiceSecurityTestResults.ps1
function Publish-EdenServiceSecurityTestResults { <# .SYNOPSIS Publishing security test results. .DESCRIPTION Publishing security test results. by calling the local './Eden/Testing/Security/Publish-ServiceSecurityTestResults.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/Publish-ServiceSecurityTestResults" ` -SettingsName $SettingsName ` -CommandGroup "Testing Security" ` -Message "Publishing security test results." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tsptr ` -Value Publish-EdenServiceSecurityTestResults ` -Force |