Public/Testing/Features/Show-EdenServiceFeaturesTestResultsPublished.ps1

function Show-EdenServiceFeaturesTestResultsPublished {
    <#
        .SYNOPSIS
        Showing published feature test results.

        .DESCRIPTION
        Showing published feature test results. by calling the local './Eden/Testing/Features/Show-ServiceFeaturesTestResultsPublished.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/Features/Show-ServiceFeaturesTestResultsPublished" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Features" `
        -Message "Showing published feature test results." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tftrp `
    -Value Show-EdenServiceFeaturesTestResultsPublished `
    -Force