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