getBehaviorDrivenDescription method

  1. @override
String getBehaviorDrivenDescription(
  1. TestController tester
)
override

Gets the most appropriate BDD string based on the values set on the step.

Implementation

@override
String getBehaviorDrivenDescription(TestController tester) =>
    behaviorDrivenDescriptions[0]
        .replaceAll('{{variableName}}', variableName)
        .replaceAll('{{type}}', type)
        .replaceAll('{{value}}', value ?? 'null');