Class AssertionsOnRowEquality

java.lang.Object
org.assertj.db.api.assertions.impl.AssertionsOnRowEquality

public class AssertionsOnRowEquality extends Object
Implements the assertion method on the equality of a row.
Author:
Régis Pouiller
See Also:
  • Method Details

    • hasValues

      public static <A extends AbstractAssert<?>> A hasValues(A assertion, org.assertj.core.api.WritableAssertionInfo info, List<Value> valuesList, Object... expected)
      Verifies that the values of a column are equal to values in parameter.
      Type Parameters:
      A - The type of the assertion which call this method.
      Parameters:
      assertion - The assertion which call this method.
      info - Writable information about an assertion.
      valuesList - The list of values.
      expected - The expected values.
      Returns:
      this assertion object.
      Throws:
      AssertionError - If the value is not equal to the values in parameter.