io.split.testrunner.junit.JUnitRunnerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qosrunner Show documentation
Show all versions of qosrunner Show documentation
Framework for running JUnit Tests as a Continous Service (QoS)
package io.split.testrunner.junit;
import io.split.testrunner.junit.JUnitRunner;
import java.lang.reflect.Method;
import java.util.Optional;
/**
* Guice Factory for creating test runners.
*/
@FunctionalInterface
public interface JUnitRunnerFactory {
/**
* Creates a JUnitRunner
*
* @param test the method to run
* @param nameAppender a name appender in case it exists.
* @return the JUnitRunner
*/
JUnitRunner create(Method test, Optional nameAppender);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy