Alexandre Ardhuin 4d7525f05c
Opt out nnbd in packages/flutter (#59186)
* add language version 2.8 in packages/flutter

* enable non-nullable analyzer flag
2020-06-11 14:11:30 +02:00

36 lines
929 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.
// @dart = 2.8
import 'package:flutter/scheduler.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
test('debugAssertAllSchedulerVarsUnset control test', () {
expect(() {
debugAssertAllSchedulerVarsUnset('Example test');
}, isNot(throwsFlutterError));
debugPrintBeginFrameBanner = true;
expect(() {
debugAssertAllSchedulerVarsUnset('Example test');
}, throwsFlutterError);
debugPrintBeginFrameBanner = false;
debugPrintEndFrameBanner = true;
expect(() {
debugAssertAllSchedulerVarsUnset('Example test');
}, throwsFlutterError);
debugPrintEndFrameBanner = false;
expect(() {
debugAssertAllSchedulerVarsUnset('Example test');
}, isNot(throwsFlutterError));
});
}