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