All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.opennano.reflectionassert.diffs.SimpleDiff Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy