Uses of Interface
com.consol.citrus.TestAction
-
Packages that use TestAction Package Description com.consol.citrus com.consol.citrus.common com.consol.citrus.container com.consol.citrus.message com.consol.citrus.report -
-
Uses of TestAction in com.consol.citrus
Classes in com.consol.citrus with type parameters of type TestAction Modifier and Type Interface Description interfaceTestActionBuilder<T extends TestAction>Test action builder.static interfaceTestActionBuilder.DelegatingTestActionBuilder<T extends TestAction>Subinterfaces of TestAction in com.consol.citrus Modifier and Type Interface Description interfaceTestCaseTest case executing a list ofTestActionin sequence.Methods in com.consol.citrus with type parameters of type TestAction Modifier and Type Method Description default <T extends TestAction>
TTestActionRunner. $(TestActionBuilder<T> builder)Builds and runs given test action.default <T extends TestAction>
TTestActionRunner. $(T action)Runs given test action.default <T extends TestAction>
TGherkinTestActionRunner. and(TestActionBuilder<T> builder)Behavior driven style alias for run method.default <T extends TestAction>
TGherkinTestActionRunner. and(T action)Behavior driven style alias for run method.<T extends TestAction>
TestActionBuilder<T>TestActionRunner. applyBehavior(TestBehavior behavior)Apply test behavior on this test action runner.default <T extends TestAction>
TGherkinTestActionRunner. given(TestActionBuilder<T> builder)Behavior driven style alias for run method.default <T extends TestAction>
TGherkinTestActionRunner. given(T action)Behavior driven style alias for run method.<T extends TestAction>
TTestActionRunner. run(TestActionBuilder<T> builder)Builds and runs given test action.default <T extends TestAction>
TTestActionRunner. run(T action)Runs given test action.default <T extends TestAction>
TGherkinTestActionRunner. then(TestActionBuilder<T> builder)Behavior driven style alias for run method.default <T extends TestAction>
TGherkinTestActionRunner. then(T action)Behavior driven style alias for run method.default <T extends TestAction>
TGherkinTestActionRunner. when(TestActionBuilder<T> builder)Behavior driven style alias for run method.default <T extends TestAction>
TGherkinTestActionRunner. when(T action)Behavior driven style alias for run method.Methods in com.consol.citrus that return TestAction Modifier and Type Method Description TestActionTestActorAware. setActor(TestActor actor)Sets the test actor associated with a test action.Methods in com.consol.citrus with parameters of type TestAction Modifier and Type Method Description STestActionContainerBuilder. actions(TestAction... actions)Adds test actions to the action container.default voidTestCase. addFinalAction(TestAction action)Adds action to finally action chain.voidTestCase. executeAction(TestAction action, TestContext context)Executes a single test action with given test context. -
Uses of TestAction in com.consol.citrus.common
Methods in com.consol.citrus.common that return TestAction Modifier and Type Method Description TestActionDescribed. setDescription(String description)Description setter. -
Uses of TestAction in com.consol.citrus.container
Subinterfaces of TestAction in com.consol.citrus.container Modifier and Type Interface Description interfaceAfterSuiteinterfaceAfterTestinterfaceBeforeSuiteinterfaceBeforeTestinterfaceTestActionContainerContainer interface describing all test action containers that hold several embedded test actions to execute.Methods in com.consol.citrus.container that return TestAction Modifier and Type Method Description TestActionTestActionContainer. getActiveAction()Get the action that was executed most recently.TestActionTestActionContainer. getTestAction(int index)Get the test action with given index in list.Methods in com.consol.citrus.container that return types with arguments of type TestAction Modifier and Type Method Description List<TestAction>TestActionContainer. getActions()Get the embedded test actions within this container.List<TestAction>TestActionContainer. getExecutedActions()Gets all nested actions that have been executed in the container.Methods in com.consol.citrus.container with parameters of type TestAction Modifier and Type Method Description TestActionContainerTestActionContainer. addTestAction(TestAction action)Adds a test action to the nested action list.TestActionContainerTestActionContainer. addTestActions(TestAction... action)Adds one to many test actions to the nested action list.intTestActionContainer. getActionIndex(TestAction action)Returns the index in the action chain for provided action instance.voidTestActionContainer. setActiveAction(TestAction action)Sets the current active action executed.voidTestActionContainer. setExecutedAction(TestAction action)Sets the last action that has been executed.Method parameters in com.consol.citrus.container with type arguments of type TestAction Modifier and Type Method Description TestActionContainerTestActionContainer. setActions(List<TestAction> actions)Sets the embedded test actions to execute within this container. -
Uses of TestAction in com.consol.citrus.message
Methods in com.consol.citrus.message with parameters of type TestAction Modifier and Type Method Description StringDefaultMessageStore. constructMessageName(TestAction action, Endpoint endpoint)StringMessageStore. constructMessageName(TestAction action, Endpoint endpoint) -
Uses of TestAction in com.consol.citrus.report
Methods in com.consol.citrus.report with parameters of type TestAction Modifier and Type Method Description voidTestActionListener. onTestActionFinish(TestCase testCase, TestAction testAction)Invoked when test gets finishedvoidTestActionListeners. onTestActionFinish(TestCase testCase, TestAction testAction)voidTestActionListener. onTestActionSkipped(TestCase testCase, TestAction testAction)Invoked when test is skippedvoidTestActionListeners. onTestActionSkipped(TestCase testCase, TestAction testAction)voidTestActionListener. onTestActionStart(TestCase testCase, TestAction testAction)Invoked when test gets startedvoidTestActionListeners. onTestActionStart(TestCase testCase, TestAction testAction)
-