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

com.github.opennano.reflectionassert.diffs.MissingValueDiff 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 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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy