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

prompto.expression.IAssertion Maven / Gradle / Ivy

package prompto.expression;

import prompto.compiler.Flags;
import prompto.compiler.MethodInfo;
import prompto.declaration.TestMethodDeclaration;
import prompto.runtime.Context;

public interface IAssertion {

	boolean interpretAssert(Context context, TestMethodDeclaration testMethodDeclaration);
	default void compileAssert(Context context, MethodInfo method, Flags flags, TestMethodDeclaration test) {
		throw new UnsupportedOperationException("Missing compileAssert for " + this.getClass().getName());
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy