Package io.debezium.data
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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidassertEquals(String pathToField, Object actualValue, Object expectedValue)Assert that the actual and expected values are equal.
-
-
-
Method Detail
-
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 nullactualValue- the actual value for the field in the source record; never nullexpectedValue- the expected value for the field in the source record; never null
-
-