mirror of
https://github.com/flutter/flutter.git
synced 2026-02-04 01:56:32 +08:00
The demo of the SimpleDialog had some useful code that should really be part of the framework. This patch extracts it into a SimpleDialogOption widget. Remove debugCheckHasScaffold because it is unused. Also, add tests for InkWell, SimpleDialog, and other widgets.
17 lines
516 B
Dart
17 lines
516 B
Dart
// Copyright 2016 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.
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('debugCheckHasMaterial control test', (WidgetTester tester) async {
|
|
await tester.pumpWidget(new FlatButton(
|
|
onPressed: null,
|
|
child: new Text('Go'),
|
|
));
|
|
expect(tester.takeException(), isFlutterError);
|
|
});
|
|
}
|