io.split.testrunner.junit.modules.TestRunnerModule 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.modules;
import com.google.inject.AbstractModule;
import com.google.inject.assistedinject.FactoryModuleBuilder;
import io.split.testrunner.junit.JUnitRunner;
import io.split.testrunner.junit.JUnitRunnerFactory;
/**
* Guice Module for the test runner.
*/
public class TestRunnerModule extends AbstractModule {
@Override
protected void configure() {
install(new FactoryModuleBuilder()
.implement(JUnitRunner.class, JUnitRunner.class)
.build(JUnitRunnerFactory.class));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy