Public/Testing/Features/Test-EdenServiceFeaturesContinuous.ps1
function Test-EdenServiceFeaturesContinuous { <# .SYNOPSIS Testing features continuously .DESCRIPTION Testing features continuously by calling the local './Eden/Testing/Features/Test-ServiceFeaturesContinuous.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-ServiceFeaturesContinuous" ` -SettingsName $SettingsName ` -CommandGroup "Testing Features" ` -Message "Testing features continuously." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-tftc ` -Value Test-EdenServiceFeaturesContinuous ` -Force |