Public/Testing/Security/Show-EdenServiceSecurityTestResults.ps1

function Show-EdenServiceSecurityTestResults {
    <#
        .SYNOPSIS
        Showing security test results.

        .DESCRIPTION
        Showing security test results. by calling the local './Eden/Testing/Security/Show-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/Show-ServiceSecurityTestResults" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Security" `
        -Message "Showing security test results." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tstr `
    -Value Show-EdenServiceSecurityTestResults `
    -Force