Public/Testing/Features/Show-EdenServiceFeaturesTestResults.ps1

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

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