TestingHelperTest/private/tests-helper-WarInfoParams.ps1
# Variables used to the written output of the cmdlets $WarningParameters = @{ WarningAction = 'SilentlyContinue' WarningVariable = 'warningVar' } $InfoParameters = @{ InformationAction = 'SilentlyContinue' InformationVariable = 'infoVar' } $ErrorParameters = @{ ErrorAction = 'Silently' ErrorVariable = 'errorVar' } |