com.github.dakusui.lisj.func.BaseFunc 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.lisj.func;
import com.github.dakusui.jcunit.exceptions.JCUnitException;
import com.github.dakusui.lisj.BaseForm;
import com.github.dakusui.lisj.CUT;
import com.github.dakusui.lisj.Context;
import com.github.dakusui.lisj.FormResult;
public abstract class BaseFunc extends BaseForm {
/**
* Serial version UID.
*/
private static final long serialVersionUID = -5433964838210243390L;
@Override
protected FormResult evaluateEach(Context context,
Object currentParam, FormResult lastResult) throws JCUnitException, CUT {
return evaluateEachSimply(context, currentParam, lastResult);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy