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

com.github.dakusui.jcunit.plugins.constraints.NullConstraintChecker Maven / Gradle / Ivy

There is a newer version: 0.8.17
Show newest version
package com.github.dakusui.jcunit.plugins.constraints;

import com.github.dakusui.jcunit.core.tuples.Tuple;

import java.util.Collections;
import java.util.List;

public class NullConstraintChecker extends ConstraintChecker.Base {
  @Override
  public boolean check(Tuple tuple) {
    return true;
  }

  @Override
  public List getConstraints() {
    return Collections.emptyList();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy