cucumber_gherkin 42.0.1
cucumber_gherkin: ^42.0.1 copied to clipboard
Gherkin parser and compiler for Dart. Parses .feature sources into Cucumber Messages envelopes.
import 'package:cucumber_gherkin/cucumber_gherkin.dart';
void main() {
final envelopes = generateMessages(
'Feature: Minimal\n\n Scenario: minimalistic\n Given the minimalism\n',
'minimal.feature',
);
print('Generated ${envelopes.length} message envelopes.');
}