blob: 53a5bd64268385246cf7bf9b376be5356e607f87 [file] [log] [blame]
package test.cyclic;
import org.testng.annotations.BeforeClass;
public abstract class BaseIntegrationTest {
@BeforeClass(groups="integration")
protected void initIntegrationTesting() {
//...
}
@BeforeClass(groups="integration")
void executeBeforeClassDbOperations() {
//...
}
}