Class StepDefinition
- java.lang.Object
-
- com.chutneytesting.engine.domain.execution.StepDefinition
-
public class StepDefinition extends Object
Immutable tree-like structure composing a Scenario.
-
-
Field Summary
Fields Modifier and Type Field Description StringenvironmentMap<String,Object>inputsData used by a matched extension, may be empty.StringnameMap<String,Object>outputsList<StepDefinition>stepsSub steps, may be empty.StringtypeType of the step, should match an extension.Map<String,Object>validations
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<StepStrategyDefinition>getStrategy()Optional<Target>getTarget()StringtoString()
-
-
-
Field Detail
-
name
public final String name
-
type
public final String type
Type of the step, should match an extension.
-
steps
public final List<StepDefinition> steps
Sub steps, may be empty.
-
environment
public final String environment
-
-