e2e 0.2.3+1 copy "e2e: ^0.2.3+1" to clipboard
e2e: ^0.2.3+1 copied to clipboard

discontinued
outdated

Runs tests that use the flutter_test API as integration tests.

example/lib/main.dart

import 'dart:io' show Platform;
import 'package:flutter/material.dart';

// ignore_for_file: public_member_api_docs

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Platform: ${Platform.operatingSystem}\n'),
        ),
      ),
    );
  }
}
43
likes
0
pub points
75%
popularity

Publisher

verified publisherflutter.dev

Runs tests that use the flutter_test API as integration tests.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_test

More

Packages that depend on e2e