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

com.github.opennano.reflectionassert.diffs.UnexpectedValueDiff 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 items in a collection, map, or array where an unexpected
 * value was present
 */
public final class UnexpectedValueDiff extends Diff {

  public UnexpectedValueDiff(String path, Object actual) {
    super(path, null, actual);
  }

  @Override
  public DiffType getType() {
    return DiffType.UNEXPECTED;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy