Public/Testing/Security/Show-EdenServiceSecurityTestResultsPublished.ps1

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

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