behaviorDrivenDescriptions property

List<String> behaviorDrivenDescriptions
final

Returns the Behavior Driven Development description for the test step. The results of this may be in Markdown and this provides a description of the test step in a way that is more easily understood by non-developers.

Variables in the step should be encoded with the mustache template format like {{variable}}. Consumers of this call can match this up with the toJson call to convert variables to specific values.

Implementation

static final List<String> behaviorDrivenDescriptions = List.unmodifiable([
  'run an unknown step of `{{stepId}}` type and using `{{values}}` as the parameters.',
]);