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