TestingHelperTest/private/WarInfoParams.Tests.Helper.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'
}