Package org.camunda.bpm.engine.test
Annotation Interface RequiredHistoryLevel
Annotation for a test method or class to specify the required history level.
If the current history level of the process engine is lower than the
specified one then the test method is skipped.
Usage:
package org.example; ... public class ExampleTest { @RequiredHistoryLevel(ProcessEngineConfiguration.HISTORY_ACTIVITY) public void testWithHistory() { // test something with the history service (e.g. variables) }
-
Required Element Summary
-
Element Details
-
value
String valueThe required history level.
-