io.takari.maven.testing.TestMavenRuntime Maven / Gradle / Ivy
/**
* Copyright (c) 2014-2021 Takari, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package io.takari.maven.testing;
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
import com.google.inject.Module;
public class TestMavenRuntime extends AbstractTestMavenRuntime implements TestRule {
public TestMavenRuntime() {
super();
}
public TestMavenRuntime(Module... modules) {
super(modules);
}
@Override
public Statement apply(final Statement base, final Description description) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
createMavenRuntime();
try {
base.evaluate();
} finally {
shutDownMavenRuntime();
}
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy