ch.inftec.ju.ee.test.WebContainerTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ju-testing-ee Show documentation
Show all versions of ju-testing-ee Show documentation
Contains helping classes for Unit Testing, supporting CDI and EE features, including DB access
package ch.inftec.ju.ee.test;
import org.junit.Rule;
import ch.inftec.ju.ee.test.ContainerTestRunnerRule.TestRunnerType;
import ch.inftec.ju.ee.webtest.WebTest;
/**
* Base class for test cases that run as (remote) web tests, but need a running container
* for data loading and web request handling.
* @author Martin
*
*/
public abstract class WebContainerTest extends WebTest {
/**
* Rule that performs test setup and verification on the server.
*/
@Rule
public ContainerTestRunnerRule testRunnerRule = new ContainerTestRunnerRule(TestRunnerType.REMOTE_TEST);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy