blob: b38a69bc93bb90d4e18361660abf597c49266b23 [file] [log] [blame]
Ian Hickson449f4a62019-11-27 15:04:02 -08001// Copyright 2014 The Flutter Authors. All rights reserved.
Adam Barthb9f49a42017-01-10 11:31:24 -08002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Jonah Williamsa43e3a42018-11-06 10:48:34 -08005import 'package:test_api/test_api.dart' hide TypeMatcher, isInstanceOf;
Adam Barthb9f49a42017-01-10 11:31:24 -08006
7void main() {
Josh Sorefc5a59452018-03-07 00:36:03 -05008 test('Trivial test', () {
Adam Barthb9f49a42017-01-10 11:31:24 -08009 expect(42, 42);
10 });
11}