Public/Testing/Features/Publish-EdenServiceFeaturesTestResults.ps1

function Publish-EdenServiceFeaturesTestResults {
    <#
        .SYNOPSIS
        Publishing feature test results.

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