Public/Testing/Features/Test-EdenServiceFeatures.ps1

function Test-EdenServiceFeatures {
    <#
        .SYNOPSIS
        Testing features.

        .DESCRIPTION
        Testing features. by calling the local './Eden/Testing/Features/Test-ServiceFeatures.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/Features/Test-ServiceFeatures" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Features" `
        -Message "Testing features." `
        -AdditionalArguments $AdditionalArguments

}

New-Alias `
    -Name e-tft `
    -Value Test-EdenServiceFeatures `
    -Force