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