tests/general/strings.Exceptions.ps1

$exceptions = @{ }

<#
A list of entries that MAY be in the language files, without causing the tests to fail.
This is commonly used in modules that generate localized messages straight from C#.
Specify the full key as it is written in the language files, do not prepend the modulename,
as you would have to in C# code.
 
Example:
$exceptions['LegalSurplus'] = @(
    'Exception.Streams.FailedCreate'
    'Exception.Streams.FailedDispose'
)
#>

$exceptions['LegalSurplus'] = @(
    'Verbose.Checkpoint'
    'Verbose.CreateVm'
    'Verbose.UndefineVm'
    'Verbose.RebootVm'
    'Verbose.RestoreCheckpoint'
    'Verbose.StartVm'
    'Verbose.StopVm'
    'Verbose.SaveVm'
)

$exceptions