gherkin_integration_test 0.0.2+1 gherkin_integration_test: ^0.0.2+1 copied to clipboard
A gherkin integration test framework based on flutter's official integration_test package.
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(),
);
}
}