gherkin_integration_test 0.0.4+3 copy "gherkin_integration_test: ^0.0.4+3" to clipboard
gherkin_integration_test: ^0.0.4+3 copied to clipboard

A gherkin integration test framework based on flutter's official integration_test package.

example/lib/main.dart

import 'package:example/gherkin_integration_test_view.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Gherkin Integration Test',
      theme: ThemeData(
        primarySwatch: Colors.green,
      ),
      home: const GherkinIntegrationTestView(),
    );
  }
}
3
likes
0
pub points
36%
popularity

Publisher

verified publishercodaveto.com

A gherkin integration test framework based on flutter's official integration_test package.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_test, integration_test

More

Packages that depend on gherkin_integration_test