de.otto.edison.testsupport.applicationdriver.SpringTestBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edison-testsupport Show documentation
Show all versions of edison-testsupport Show documentation
Test support for Edison Microservices.
package de.otto.edison.testsupport.applicationdriver;
import de.otto.edison.testsupport.TestServer;
import org.springframework.context.ApplicationContext;
public class SpringTestBase {
static {
TestServer.main(new String[0]);
}
public static ApplicationContext applicationContext() {
return TestServer.applicationContext();
}
}