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