blob: c8bb894f559bdc19e79528b9c467bdbad22be76c [file] [log] [blame]
Adam Barthb9f49a42017-01-10 11:31:24 -08001// Copyright 2017 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ian Hickson686d8f82018-08-14 20:33:58 -07005import 'package:test/test.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}