Interface CNumberWaitVerifier<N extends java.lang.Number & java.lang.Comparable<N>>

    • Method Detail

      • verifyBetweenExclusive

        default void verifyBetweenExclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds)
        Verify that actual value is between lower and higher bound values (exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
      • verifyBetweenExclusive

        default void verifyBetweenExclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            java.lang.String message,
                                            java.lang.Object... params)
        Verify that actual value is between lower and higher bound values (exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyBetweenExclusive

        default void verifyBetweenExclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)
        Verify that actual value is between lower and higher bound values (exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyBetweenExclusive

        default void verifyBetweenExclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds,
                                            java.lang.String message,
                                            java.lang.Object... params)
        Verify that actual value is between lower and higher bound values (exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyBetweenInclusive

        default void verifyBetweenInclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds)
        Verify that actual value is between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
      • verifyBetweenInclusive

        default void verifyBetweenInclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            java.lang.String message,
                                            java.lang.Object... params)
        Verify that actual value is between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyBetweenInclusive

        default void verifyBetweenInclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds)
        Verify that actual value is between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyBetweenInclusive

        default void verifyBetweenInclusive​(CVerificationQueue verificationQueue,
                                            N lowerBound,
                                            N higherBound,
                                            int waitInSeconds,
                                            int intervalInMilliSeconds,
                                            java.lang.String message,
                                            java.lang.Object... params)
        Verify that actual value is between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyEqualsP

        default void verifyEqualsP​(CVerificationQueue verificationQueue,
                                   N expected,
                                   N precision,
                                   int waitInSeconds)
        Verify that actual and expected have the exact same value or their difference is less than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        waitInSeconds - maximum wait time
      • verifyEqualsP

        default void verifyEqualsP​(CVerificationQueue verificationQueue,
                                   N expected,
                                   N precision,
                                   int waitInSeconds,
                                   java.lang.String message,
                                   java.lang.Object... params)
        Verify that actual and expected have the exact same value or their difference is less than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        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...)
      • verifyEqualsP

        default void verifyEqualsP​(CVerificationQueue verificationQueue,
                                   N expected,
                                   N precision,
                                   int waitInSeconds,
                                   int intervalInMilliSeconds)
        Verify that actual and expected have the exact same value or their difference is less than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyEqualsP

        default void verifyEqualsP​(CVerificationQueue verificationQueue,
                                   N expected,
                                   N precision,
                                   int waitInSeconds,
                                   int intervalInMilliSeconds,
                                   java.lang.String message,
                                   java.lang.Object... params)
        Verify that actual and expected have the exact same value or their difference is less than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        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...)
      • verifyGreater

        default void verifyGreater​(CVerificationQueue verificationQueue,
                                   N expected,
                                   int waitInSeconds)
        Verify that actual has value greater than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyGreater

        default void verifyGreater​(CVerificationQueue verificationQueue,
                                   N expected,
                                   int waitInSeconds,
                                   java.lang.String message,
                                   java.lang.Object... params)
        Verify that actual has value greater than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyGreater

        default void verifyGreater​(CVerificationQueue verificationQueue,
                                   N expected,
                                   int waitInSeconds,
                                   int intervalInMilliSeconds)
        Verify that actual has value greater than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyGreater

        default void verifyGreater​(CVerificationQueue verificationQueue,
                                   N expected,
                                   int waitInSeconds,
                                   int intervalInMilliSeconds,
                                   java.lang.String message,
                                   java.lang.Object... params)
        Verify that actual has value greater than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyGreaterOrEqual

        default void verifyGreaterOrEqual​(CVerificationQueue verificationQueue,
                                          N expected,
                                          int waitInSeconds)
        Verify that actual has value greater or equal to expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyGreaterOrEqual

        default void verifyGreaterOrEqual​(CVerificationQueue verificationQueue,
                                          N expected,
                                          int waitInSeconds,
                                          java.lang.String message,
                                          java.lang.Object... params)
        Verify that actual has value greater or equal to expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyGreaterOrEqual

        default void verifyGreaterOrEqual​(CVerificationQueue verificationQueue,
                                          N expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds)
        Verify that actual has value greater or equal to expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyGreaterOrEqual

        default void verifyGreaterOrEqual​(CVerificationQueue verificationQueue,
                                          N expected,
                                          int waitInSeconds,
                                          int intervalInMilliSeconds,
                                          java.lang.String message,
                                          java.lang.Object... params)
        Verify that actual has value greater or equal to expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyLess

        default void verifyLess​(CVerificationQueue verificationQueue,
                                N expected,
                                int waitInSeconds)
        Verify that actual has value less than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyLess

        default void verifyLess​(CVerificationQueue verificationQueue,
                                N expected,
                                int waitInSeconds,
                                java.lang.String message,
                                java.lang.Object... params)
        Verify that actual has value less than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyLess

        default void verifyLess​(CVerificationQueue verificationQueue,
                                N expected,
                                int waitInSeconds,
                                int intervalInMilliSeconds)
        Verify that actual has value less than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyLess

        default void verifyLess​(CVerificationQueue verificationQueue,
                                N expected,
                                int waitInSeconds,
                                int intervalInMilliSeconds,
                                java.lang.String message,
                                java.lang.Object... params)
        Verify that actual has value less than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyLessOrEqual

        default void verifyLessOrEqual​(CVerificationQueue verificationQueue,
                                       N expected,
                                       int waitInSeconds)
        Verify that actual has value less or equal than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
      • verifyLessOrEqual

        default void verifyLessOrEqual​(CVerificationQueue verificationQueue,
                                       N expected,
                                       int waitInSeconds,
                                       java.lang.String message,
                                       java.lang.Object... params)
        Verify that actual has value less or equal than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyLessOrEqual

        default void verifyLessOrEqual​(CVerificationQueue verificationQueue,
                                       N expected,
                                       int waitInSeconds,
                                       int intervalInMilliSeconds)
        Verify that actual has value less or equal than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyLessOrEqual

        default void verifyLessOrEqual​(CVerificationQueue verificationQueue,
                                       N expected,
                                       int waitInSeconds,
                                       int intervalInMilliSeconds,
                                       java.lang.String message,
                                       java.lang.Object... params)
        Verify that actual has value less or equal than expected.
        Parameters:
        verificationQueue - verification _verify builder for verification
        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...)
      • verifyNotBetweenExclusive

        default void verifyNotBetweenExclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds)
        Verify that actual value is NOT between lower and higher bound values (Exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
      • verifyNotBetweenExclusive

        default void verifyNotBetweenExclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual value is NOT between lower and higher bound values (Exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyNotBetweenExclusive

        default void verifyNotBetweenExclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)
        Verify that actual value is NOT between lower and higher bound values (Exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotBetweenExclusive

        default void verifyNotBetweenExclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual value is NOT between lower and higher bound values (Exclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyNotBetweenInclusive

        default void verifyNotBetweenInclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds)
        Verify that actual value is NOT between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
      • verifyNotBetweenInclusive

        default void verifyNotBetweenInclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual value is NOT between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyNotBetweenInclusive

        default void verifyNotBetweenInclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds)
        Verify that actual value is NOT between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotBetweenInclusive

        default void verifyNotBetweenInclusive​(CVerificationQueue verificationQueue,
                                               N lowerBound,
                                               N higherBound,
                                               int waitInSeconds,
                                               int intervalInMilliSeconds,
                                               java.lang.String message,
                                               java.lang.Object... params)
        Verify that actual value is NOT between lower and higher bound values (Inclusive).
        Parameters:
        verificationQueue - verification _verify builder for verification
        lowerBound - lower bound inclusive
        higherBound - higher bound inclusive
        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...)
      • verifyNotEqualsP

        default void verifyNotEqualsP​(CVerificationQueue verificationQueue,
                                      N expected,
                                      N precision,
                                      int waitInSeconds)
        Verify that actual and expected have different value greater than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        waitInSeconds - maximum wait time
      • verifyNotEqualsP

        default void verifyNotEqualsP​(CVerificationQueue verificationQueue,
                                      N expected,
                                      N precision,
                                      int waitInSeconds,
                                      java.lang.String message,
                                      java.lang.Object... params)
        Verify that actual and expected have different value greater than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        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...)
      • verifyNotEqualsP

        default void verifyNotEqualsP​(CVerificationQueue verificationQueue,
                                      N expected,
                                      N precision,
                                      int waitInSeconds,
                                      int intervalInMilliSeconds)
        Verify that actual and expected have different value greater than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        waitInSeconds - maximum wait time
        intervalInMilliSeconds - interval between retries in milliseconds
      • verifyNotEqualsP

        default void verifyNotEqualsP​(CVerificationQueue verificationQueue,
                                      N expected,
                                      N precision,
                                      int waitInSeconds,
                                      int intervalInMilliSeconds,
                                      java.lang.String message,
                                      java.lang.Object... params)
        Verify that actual and expected have different value greater than precision value.

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

        Parameters:
        verificationQueue - verification _verify builder for verification
        expected - value to compare
        precision - the acceptable precision
        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...)