![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dakusui.jcunit.plugins.constraints.NullConstraintChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcunit Show documentation
Show all versions of jcunit Show documentation
Automated combinatorial testing framework on top of JUnit
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