Class ShouldSatisfy

java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.db.error.ShouldSatisfy
All Implemented Interfaces:
org.assertj.core.error.ErrorMessageFactory

public class ShouldSatisfy extends org.assertj.core.error.BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value does not satisfying condition.
Author:
Julien Roy
  • Field Summary

    Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory

    arguments, format
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.assertj.core.error.ErrorMessageFactory
    shouldSatisfy(int index, Object actual, org.assertj.core.api.Condition<?> condition)
    Verifies that the values of a row satisfy to conditions in parameter.

    Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory

    create, create, create, equals, hashCode, toString, unquotedString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Method Details

    • shouldSatisfy

      public static org.assertj.core.error.ErrorMessageFactory shouldSatisfy(int index, Object actual, org.assertj.core.api.Condition<?> condition)
      Verifies that the values of a row satisfy to conditions in parameter.
      Parameters:
      index - The index of properties
      actual - The actual value that triggered assertion error.
      condition - The condition that triggered assertion error.
      Returns:
      this condition not satisfied error message.