mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
19 lines
661 B
Dart
19 lines
661 B
Dart
// Copyright 2014 The Flutter 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/foundation.dart';
|
|
import 'package:flutter/scheduler.dart';
|
|
// ignore: deprecated_member_use
|
|
import 'package:test_api/test_api.dart' hide TypeMatcher, isInstanceOf;
|
|
|
|
import '../../../rendering/touch_input.dart' as demo;
|
|
|
|
void main() {
|
|
test('layers smoketest for rendering/touch_input.dart', () {
|
|
FlutterError.onError = (FlutterErrorDetails details) { throw details.exception; };
|
|
demo.main();
|
|
expect(SchedulerBinding.instance.hasScheduledFrame, true);
|
|
});
|
|
}
|