Public/Testing/Code/Test-EdenServiceCode.ps1

function Test-EdenServiceCode {
    <#
        .SYNOPSIS
        Testing the code.

        .DESCRIPTION
        Testing the code. by calling the local './Eden/Testing/Code/Test-ServiceCode.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/Test-ServiceCode" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Code" `
        -Message "Testing the code." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tct `
    -Value Test-EdenServiceCode `
    -Force