
com.slickqa.junit.SlickSuite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of slickqa-junit Show documentation
Show all versions of slickqa-junit Show documentation
JUnit integration for the slick test management tool.
The newest version!
package com.slickqa.junit;
import org.junit.runners.Suite;
import org.junit.runners.model.InitializationError;
import org.junit.runners.model.RunnerBuilder;
/**
* Created by jason.corbett on 1/23/17.
*/
public class SlickSuite extends Suite {
static {
}
public final SlickJunitController controller = SlickJunitControllerFactory.getControllerInstance();
public SlickSuite(Class> klass, RunnerBuilder builder) throws InitializationError {
super(klass, builder);
init();
}
protected void init() {
controller.createSuiteResults(this.getDescription().getChildren());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy