trivial_test.dart 113 Bytes
Newer Older
Adam Barth's avatar
Adam Barth committed
1 2 3 4 5 6 7
import 'package:test/test.dart';

void main() {
  test("should pass", () {
    expect(1 + 1, equals(2));
  });
}