Package de.hybris.bootstrap.annotations
Annotation Type IntegrationTest
-
@Target(TYPE) @Retention(RUNTIME) @Documented public @interface IntegrationTestThe
@IntegrationTestannotation is provided for marking integration tests which uses real services and usually will communicate with persistence layer.With the annotation attribute
standaloneyou can specify whether current test requires some servlet container available during test run, like for instance Apache Tomcat.With the annotation attribute
excludedAppserveryou can specify in a comma separated string list the application server(s) where this test (with this annotation) should not be executed. The application server string is the value of the property keybundled.server.type. Example: "websphere,tomcat"
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.StringexcludedAppserverComma separated list of application server where the test with this annotation should NOT be executed.java.lang.ClassreplacesContains the test class to be replaced by this class.booleanstandaloneDetermines whether test requires servlet container available.
-