instrumentation_adapter 0.1.3 copy "instrumentation_adapter: ^0.1.3" to clipboard
instrumentation_adapter: ^0.1.3 copied to clipboard

discontinued

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';

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'),
        ),
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Runs tests that use the flutter_test API as integration tests.

Homepage
Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_test

More

Packages that depend on instrumentation_adapter