Package org.assertj.db.error
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 TypeMethodDescriptionstatic org.assertj.core.error.ErrorMessageFactoryshouldSatisfy(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
-
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 propertiesactual- The actual value that triggered assertion error.condition- The condition that triggered assertion error.- Returns:
thiscondition not satisfied error message.
-