flutter/dev/integration_tests/non_nullable/test/test_test.dart
Jonah Williams 958f7c5b55
[flutter_tools] ensure generated entrypoint matches test and web entrypoint language version (#59291)
Ensure that the language version of the test/web generated entrypoint matches the language version of the test file to run, or the overall package language version if no annotation is provided.
2020-06-16 09:17:12 -07:00

13 lines
329 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_test/flutter_test.dart';
void main() {
testWidgets('trivial', (WidgetTester tester) async {
expect(true, true);
});
}