flutter/dev/integration_tests/non_nullable/test/test_test.dart
2021-04-27 19:05:05 -07:00

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