Public/Testing/Performance/Test-EdenServicePerformance.ps1

function Test-EdenServicePerformance {
    <#
        .SYNOPSIS
        Testing performance.

        .DESCRIPTION
        Testing performance. by calling the local './Eden/Testing/Performance/Test-ServicePerformance.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/Test-ServicePerformance" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Performance" `
        -Message "Testing performance." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tpt `
    -Value Test-EdenServicePerformance `
    -Force