Interface VerifyRecord.RecordValueComparator

Enclosing class:
VerifyRecord
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface VerifyRecord.RecordValueComparator
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    assertEquals(String pathToField, Object actualValue, Object expectedValue)
    Assert that the actual and expected values are equal.
  • Method Details

    • assertEquals

      void assertEquals(String pathToField, Object actualValue, Object expectedValue)
      Assert that the actual and expected values are equal. By the time this method is called, the actual value and expected values are both determined to be non-null.
      Parameters:
      pathToField - the path to the field within the JSON representation of the source record; never null
      actualValue - the actual value for the field in the source record; never null
      expectedValue - the expected value for the field in the source record; never null