aves_mio18/.flutter/dev/missing_dependency_tests/trivial_test.dart
2026-04-14 09:53:02 +02:00

11 lines
300 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:test/test.dart' hide TypeMatcher, isInstanceOf;
void main() {
test('Trivial test', () {
expect(42, 42);
});
}