org.testng.internal.ITestClassConfigInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal;
import java.util.List;
import org.testng.ITestNGMethod;
import org.testng.collections.Lists;
public interface ITestClassConfigInfo {
/**
* get all before class config methods
*
* @return all before class config methods
*/
default List getAllBeforeClassMethods() {
return Lists.newArrayList();
}
/**
* Query the instance before class methods from config methods map.
*
* @param instance object hashcode
* @return All before class methods of instance
*/
default List getInstanceBeforeClassMethods(Object instance) {
return Lists.newArrayList();
}
}