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