Public/Testing/Performance/Install-EdenServicePerformanceTestTools.ps1
function Install-EdenServicePerformanceTestTools { <# .SYNOPSIS Installing performance testing tools. .DESCRIPTION Installing performance testing tools. by calling the local './Eden/Testing/Performance/Install-ServicePerformanceTestTools.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/Install-ServicePerformanceTestTools" ` -SettingsName $SettingsName ` -CommandGroup "Testing Performance" ` -Message "Installing performance testing tools." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tpti ` -Value Install-EdenServicePerformanceTestTools ` -Force |