Public/Testing/Performance/Publish-EdenServicePerformanceTestResults.ps1

function Publish-EdenServicePerformanceTestResults {
    <#
        .SYNOPSIS
        Publishing the performance test results.

        .DESCRIPTION
        Publishing the performance test results. by calling the local './Eden/Testing/Performance/Publish-ServicePerformanceTestResults.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/Performance/Publish-ServicePerformanceTestResults" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Performance" `
        -Message "Publishing the performance test results." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tpptr `
    -Value Publish-EdenServicePerformanceTestResults `
    -Force