com.github.opennano.reflectionassert.diffs.MissingValueDiff Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of reflection-assert Show documentation
Show all versions of reflection-assert Show documentation
performs deep comparisons of objects via field reflection
package com.github.opennano.reflectionassert.diffs;
/**
* represents a difference between two items in a collection, map, or array where an expected value
* was missing
*/
public final class MissingValueDiff extends Diff {
public MissingValueDiff(String path, Object expected) {
super(path, expected, null);
}
public DiffType getType() {
return DiffType.MISSING;
}
}