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.
-
Method Summary
Modifier and TypeMethodDescriptionvoidassertEquals(String pathToField, Object actualValue, Object expectedValue) Assert that the actual and expected values are equal.
-
Method Details
-
assertEquals
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
-