Interface CDateWaitVerifier

    • Method Detail

      • verifyEqualsByFormat

        default void verifyEqualsByFormat​(CVerificationQueue verificationQueue,
                                          java.util.Date expected,
                                          java.lang.String format,
                                          int waitInSeconds)
        Verify that actual and expected have the exact same string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd" passes.

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
      • verifyEqualsByFormat

        default void verifyEqualsByFormat​(CVerificationQueue verificationQueue,
                                          java.util.Date expected,
                                          java.lang.String format,
                                          int waitInSeconds,
                                          java.lang.String message,
                                          java.lang.Object... params)
        Verify that actual and expected have the exact same string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd" passes.

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsByFormat

        default void verifyEqualsByFormat​(CVerificationQueue verificationQueue,
                                          java.util.Date expected,
                                          java.lang.String format,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)
        Verify that actual and expected have the exact same string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd" passes.

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyEqualsByFormat

        default void verifyEqualsByFormat​(CVerificationQueue verificationQueue,
                                          java.util.Date expected,
                                          java.lang.String format,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds,
                                          java.lang.String message,
                                          java.lang.Object... params)
        Verify that actual and expected have the exact same string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd" passes.

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsDatePortion

        default void verifyEqualsDatePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds)
        Verify that actual and expected have same string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyEqualsDatePortion

        default void verifyEqualsDatePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have same string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsDatePortion

        default void verifyEqualsDatePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)
        Verify that actual and expected have same string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyEqualsDatePortion

        default void verifyEqualsDatePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have same string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsTimePortion

        default void verifyEqualsTimePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds)
        Verify that actual and expected have same string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyEqualsTimePortion

        default void verifyEqualsTimePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have same string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyEqualsTimePortion

        default void verifyEqualsTimePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)
        Verify that actual and expected have same string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyEqualsTimePortion

        default void verifyEqualsTimePortion​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have same string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes

        Please note that verification consider as passe if both value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsByFormat

        default void verifyNotEqualsByFormat​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             java.lang.String format,
                                             int waitInSeconds)
        Verify that actual and expected have different string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd HH" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
      • verifyNotEqualsByFormat

        default void verifyNotEqualsByFormat​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             java.lang.String format,
                                             int waitInSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd HH" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsByFormat

        default void verifyNotEqualsByFormat​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             java.lang.String format,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds)
        Verify that actual and expected have different string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd HH" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotEqualsByFormat

        default void verifyNotEqualsByFormat​(CVerificationQueue verificationQueue,
                                             java.util.Date expected,
                                             java.lang.String format,
                                             int waitInSeconds,
                                             int intervalInMilliSeconds,
                                             java.lang.String message,
                                             java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using the provided date format. Means that verification of "2019-08-09 12:20" and "2019-08-09 11:20" using "yyyy-MM-dd HH" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        format - date format to be use
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsDatePortion

        default void verifyNotEqualsDatePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds)
        Verify that actual and expected have different string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyNotEqualsDatePortion

        default void verifyNotEqualsDatePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                java.lang.String message,
                                                java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsDatePortion

        default void verifyNotEqualsDatePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds)
        Verify that actual and expected have different string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotEqualsDatePortion

        default void verifyNotEqualsDatePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds,
                                                java.lang.String message,
                                                java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using "yyyy-MM-dd" for format. Means that verification of "2019-08-09 12:20" and "2019-08-08 12:20" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsTimePortion

        default void verifyNotEqualsTimePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds)
        Verify that actual and expected have different string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20:31" and "2019-08-09 12:20:30" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyNotEqualsTimePortion

        default void verifyNotEqualsTimePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                java.lang.String message,
                                                java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20:31" and "2019-08-09 12:20:30" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)
      • verifyNotEqualsTimePortion

        default void verifyNotEqualsTimePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds)
        Verify that actual and expected have different string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20:31" and "2019-08-09 12:20:30" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotEqualsTimePortion

        default void verifyNotEqualsTimePortion​(CVerificationQueue verificationQueue,
                                                java.util.Date expected,
                                                int waitInSeconds,
                                                int intervalInMilliSeconds,
                                                java.lang.String message,
                                                java.lang.Object... params)
        Verify that actual and expected have different string value after they converted using "HH:mm:ss" for format. Means that verification of "2019-08-09 12:20:31" and "2019-08-09 12:20:30" passes (means values are different)

        Please note that verification consider as passe if one of value is null

        Parameters:
        verificationQueue - CTest, CVerifier or any other verification queue instance
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
        message - information about the propose of this verification
        params - parameters in case if message is a format String.format(java.lang.String, java.lang.Object...)