package io.oasp.module.test.common.base; import org.junit.experimental.categories.Category; import io.oasp.module.test.common.api.category.CategorySystemTest; /** * This is the abstract base class for a system test. You are free to create your system tests as you like just by * annotating {@link CategorySystemTest} using {@link Category}. However, in most cases it will be convenient just to * extend this class. * * @see CategorySystemTest * */ @Category(CategorySystemTest.class) public abstract class SystemTest extends BaseTest { }