mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Previously the widgets layer only provided a concrete binding, which makes it awkward to extend it compared to other bindings. This moves widgets to the same style as the other layers. In a subsequent patch I'll use this to make the tests layer saner.
13 lines
415 B
Dart
13 lines
415 B
Dart
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Testing library for flutter, built on top of `package:test`.
|
|
library flutter_test;
|
|
|
|
export 'src/binding.dart';
|
|
export 'src/instrumentation.dart';
|
|
export 'src/service_mocker.dart';
|
|
export 'src/test_pointer.dart';
|
|
export 'src/widget_tester.dart';
|