
com.github.leeonky.dal.runtime.ExpectationFactory Maven / Gradle / Ivy
package com.github.leeonky.dal.runtime;
import com.github.leeonky.dal.ast.opt.DALOperator;
public interface ExpectationFactory {
Expectation create(DALOperator operator, Data actual);
interface Expectation {
Data matches();
Data equalTo();
Type type();
}
enum Type {
OBJECT, REGEX, VALUE, LIST
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy