en-US/Viscalyx.Assert.strings.psd1

<#
    .SYNOPSIS
        The localized resource strings in English (en-US). This file should only
        contain localized strings for private functions, public command, and
        classes (that are not a DSC resource).
#>


ConvertFrom-StringData @'
    ## New localized strings for Assert-BlockString
    Assert_BlockString_ActualInvalid = The Actual value must be of type string or string[], but it was not.
    Assert_BlockString_ExpectedInvalid = The Expected value must be of type string or string[], but it was not.
    Assert_BlockString_StringsNotEqual = Expected the strings to be equal
    # This string is intentionally lower-cased to match the casing of the Pester error message.
    Assert_BlockString_StringsNotEqual_Because = because
    Assert_BlockString_Difference = , but they were not. Difference is highlighted:

    ## New localized strings for Assert-ObjectProperty
    Assert_ObjectProperty_ActualIsNull = Expected the actual value not to be null, but it was null.
    Assert_ObjectProperty_PropertyNotFound = Expected the object to have property '{0}', but the property was not found.
    Assert_ObjectProperty_ValueMismatch = Expected property '{0}' to have value '{1}', but the actual value was '{2}'.
    # This string is intentionally lower-cased to match the casing of the Pester error message.
    Assert_ObjectProperty_Because = because

    ## New localized strings for Assert-ObjectMethod
    Assert_ObjectMethod_ActualIsNull = Expected the actual value not to be null, but it was null.
    Assert_ObjectMethod_MethodNotFound = Expected the object to have method '{0}', but the method was not found.
    # This string is intentionally lower-cased to match the casing of the Pester error message.
    Assert_ObjectMethod_Because = because
'@