Public/Testing/Features/Install-EdenServiceFeaturesTestTools.ps1

function Install-EdenServiceFeaturesTestTools {
    <#
        .SYNOPSIS
        Installing feature testing tools.

        .DESCRIPTION
        Installing feature testing tools. by calling the local './Eden/Testing/Features/Install-ServiceFeaturesTestTools.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/Install-ServiceFeaturesTestTools" `
        -SettingsName $SettingsName `
        -CommandGroup "Testing Features" `
        -Message "Installing feature testing tools." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-tfti `
    -Value Install-EdenServiceFeaturesTestTools `
    -Force