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