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

randoop.EverythingIsDifferentMatcher Maven / Gradle / Ivy

package randoop;

public class EverythingIsDifferentMatcher implements StateMatcher {

  int size = 0;

    @Override
  public boolean add(Object object) {
    size++;
    return true;
  }

    @Override
  public int size() {
    return size;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy