flutter_gherkin_generator 1.0.3 copy "flutter_gherkin_generator: ^1.0.3" to clipboard
flutter_gherkin_generator: ^1.0.3 copied to clipboard

Gherkin Generator is used to prepare files for Gherkin Wrapper (flutter_gherkin_wrapper) package

Flutter Gherkin Generator #

Test Status Build Status

Wrapper is used to execute widget (component) tests with Cucumber / Gherkin notation instead of integration tests as done for original flutter_gherkin-package.

Has to be used together with flutter_gherkin_wrapper-package.

Getting started #

Initialization #

// Generate steps from resources
// ./test/e2e/given/generic.dart
@GenerateGherkinResources(['../steps'])
class Generic extends GivenGeneric {}

// Generate list of steps
// ./test/e2e/steps_iterator.dart
@GenerateListOfClasses(['given', 'when', 'then'])
import 'steps_iterator.list.dart';

ExecutableStepIterator.inject(classList);
# /test/e2e/steps/open_expense_form.resource.feature
Feature: Verify Basic Actions

  Scenario: Opened Expense Form
    Given I am on "Home" page
     When I tap "Add Bill, Income or Transfer" button
     Then I can see "Add new Bill" button

Execution #

void main() {
  Iterable<File> features = Directory('./test/e2e')
      .listSync(recursive: true)
      .where(
          (entity) => entity is File && entity.path.endsWith('.test.feature'))
      .cast<File>();

  setUpAll(() {
    TestWidgetsFlutterBinding.ensureInitialized();
    ScreenCapture.enableScreenCapture();
    // MainTest.cleanUpData();
  });

  group('Run All End-To-End Tests', () {
    for (var file in features) {
      testWidgets(file.path, (WidgetTester tester) async {
        // await MainTest.init(tester);
        final runner = FileRunner(tester);
        await runner.init(file);
        // ! to avoid collisions in concurrent requests
        expectSync(await runner.run(), true);
        await tester.pumpAndSettle();
      }, timeout: const Timeout(Duration(minutes: 5)));
    }
  });
}
# /test/e2e/bill/create_different_expenses.test.feature
Feature: Verify Expenses Functionality

  Scenario Outline: Added different Expenses
    Given Opened Expense Form
     When I select "<account>" from "AccountSelector" with "Enter Account Identifier" tooltip
      And ...

In addition to thanking, you may treat us to ☕.

1
likes
0
pub points
19%
popularity

Publisher

verified publishertercad.com

Gherkin Generator is used to prepare files for Gherkin Wrapper (flutter_gherkin_wrapper) package

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

analyzer, build, flutter, flutter_test, source_gen

More

Packages that depend on flutter_gherkin_generator