com.github.opennano.reflectionassert.diffs.SimpleDiff 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 values */
public final class SimpleDiff extends Diff {
public SimpleDiff(String path, Object expected, Object actual) {
super(path, expected, actual);
}
@Override
public DiffType getType() {
return DiffType.DIFFERENT;
}
}