Public/Testing/Performance/Show-EdenServicePerformanceTestResultsPublished.ps1
function Show-EdenServicePerformanceTestResultsPublished { <# .SYNOPSIS Showing published performance test results. .DESCRIPTION Showing published performance test results. by calling the local './Eden/Testing/Performance/Show-ServicePerformanceTestResultsPublished.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/Show-ServicePerformanceTestResultsPublished" ` -SettingsName $SettingsName ` -CommandGroup "Testing Performance" ` -Message "Showing published performance test results." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tptrp ` -Value Show-EdenServicePerformanceTestResultsPublished ` -Force |