Public/Testing/Code/Publish-EdenServiceCodeCoverage.ps1

function Publish-EdenServiceCodeCoverage {
    <#
        .SYNOPSIS
        Publishing the code coverage results.

        .DESCRIPTION
        Publishing the code coverage results. by calling the local './Eden/Testing/Code/Publish-ServiceCodeCoverage.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-ServiceCodeCoverage" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Code" `
        -Message "Publishing the code coverage results." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tcpcc `
    -Value Publish-EdenServiceCodeCoverage `
    -Force