flutter_gherkin/test/mocks/parameter_mock.dart

11 lines
214 B
Dart

import 'package:gherkin/gherkin.dart';
class MockParameter extends CustomParameter<String> {
MockParameter()
: super(
'MockStringParam',
RegExp('a'),
(a) => 'a',
);
}