trivial_test.dart 304 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
Ian Hickson's avatar
Ian Hickson committed
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
// @dart = 2.8

7
import '../flutter_test_alternative.dart';
Adam Barth's avatar
Adam Barth committed
8 9

void main() {
Ian Hickson's avatar
Ian Hickson committed
10
  test('should pass', () {
Adam Barth's avatar
Adam Barth committed
11 12 13
    expect(1 + 1, equals(2));
  });
}