Class CBooleanVerification<T extends CVerificationBuilder>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T equals​(java.lang.Boolean actual, java.lang.Boolean expected, int waitInSeconds, int intervalInMilliSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has a same boolean value or be null
      T equals​(java.lang.Boolean actual, java.lang.Boolean expected, int waitInSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has a same boolean value or be null
      T equals​(java.lang.Boolean actual, java.lang.Boolean expected, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has a same boolean value or be null
      T isFalse​(java.lang.Boolean actual, int waitInSeconds, int intervalInMilliSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual value is false
      T isFalse​(java.lang.Boolean actual, int waitInSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual value is false
      T isFalse​(java.lang.Boolean actual, java.lang.String message, java.lang.Object... params)
      Verify that actual value is false
      T isTrue​(java.lang.Boolean actual, int waitInSeconds, int intervalInMilliSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual value is true
      T isTrue​(java.lang.Boolean actual, int waitInSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual value is true
      T isTrue​(java.lang.Boolean actual, java.lang.String message, java.lang.Object... params)
      Verify that actual value is true
      T notEquals​(java.lang.Boolean actual, java.lang.Boolean expected, int waitInSeconds, int intervalInMilliSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has different boolean value
      T notEquals​(java.lang.Boolean actual, java.lang.Boolean expected, int waitInSeconds, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has different boolean value
      T notEquals​(java.lang.Boolean actual, java.lang.Boolean expected, java.lang.String message, java.lang.Object... params)
      Verify that actual and expected has different boolean value
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • equals

        public T equals​(java.lang.Boolean actual,
                        java.lang.Boolean expected,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual and expected has a same boolean value or be null
        Parameters:
        actual - value to compare
        expected - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • equals

        public T equals​(java.lang.Boolean actual,
                        java.lang.Boolean expected,
                        int waitInSeconds,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual and expected has a same boolean value or be null
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • equals

        public T equals​(java.lang.Boolean actual,
                        java.lang.Boolean expected,
                        int waitInSeconds,
                        int intervalInMilliSeconds,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual and expected has a same boolean value or be null
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isFalse

        public T isFalse​(java.lang.Boolean actual,
                         java.lang.String message,
                         java.lang.Object... params)
        Verify that actual value is false
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isFalse

        public T isFalse​(java.lang.Boolean actual,
                         int waitInSeconds,
                         java.lang.String message,
                         java.lang.Object... params)
        Verify that actual value is false
        Parameters:
        actual - 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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isFalse

        public T isFalse​(java.lang.Boolean actual,
                         int waitInSeconds,
                         int intervalInMilliSeconds,
                         java.lang.String message,
                         java.lang.Object... params)
        Verify that actual value is false
        Parameters:
        actual - 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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isTrue

        public T isTrue​(java.lang.Boolean actual,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual value is true
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isTrue

        public T isTrue​(java.lang.Boolean actual,
                        int waitInSeconds,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual value is true
        Parameters:
        actual - 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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • isTrue

        public T isTrue​(java.lang.Boolean actual,
                        int waitInSeconds,
                        int intervalInMilliSeconds,
                        java.lang.String message,
                        java.lang.Object... params)
        Verify that actual value is true
        Parameters:
        actual - 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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • notEquals

        public T notEquals​(java.lang.Boolean actual,
                           java.lang.Boolean expected,
                           java.lang.String message,
                           java.lang.Object... params)
        Verify that actual and expected has different boolean value
        Parameters:
        actual - value to compare
        expected - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • notEquals

        public T notEquals​(java.lang.Boolean actual,
                           java.lang.Boolean expected,
                           int waitInSeconds,
                           java.lang.String message,
                           java.lang.Object... params)
        Verify that actual and expected has different boolean value
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls
      • notEquals

        public T notEquals​(java.lang.Boolean actual,
                           java.lang.Boolean expected,
                           int waitInSeconds,
                           int intervalInMilliSeconds,
                           java.lang.String message,
                           java.lang.Object... params)
        Verify that actual and expected has different boolean value
        Parameters:
        actual - value to compare
        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...)
        Returns:
        caller CVerificationBuilder so we can do chain calls