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

org.etlunit.parser.ETLTestMethod Maven / Gradle / Ivy

package org.etlunit.parser;

import java.util.List;

public interface ETLTestMethod extends ETLTestAnnotated, ETLTestDescribed
{
	enum method_type
	{
		before_class,
		after_class,
		before_test,
		after_test,
		test
	}

	String getName();

	String getQualifiedName();

	boolean requiresPurge();

	method_type getMethodType();

	ETLTestClass getTestClass();

	List getOperations();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy