Public/Deploying/Test-EdenServicePerformanceStaging.ps1

function Test-EdenServicePerformanceStaging {
    <#
        .SYNOPSIS
        Testing features in staging.

        .DESCRIPTION
        Testing features in staging. by calling the local './Eden/Deploying/Test-ServicePerformanceStaging.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 "Deploying/Test-ServicePerformanceStaging" `
        -SettingsName $SettingsName `
        -CommandGroup "Deploying" `
        -Message "Testing performance in staging." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-dpt `
    -Value Test-EdenServicePerformanceStaging `
    -Force