flutter/packages/unit/test/harness/trivial_test.dart
Adam Barth b64e1aaba8 Introduce sky/unit/test
This patch adds a new test harness and a first, trivial test to run with the
harness. The new test harness is built on package:test and should run on
Travis. Over time, we'll migrate our existing tests into this harness.
2015-08-20 21:01:13 -07:00

8 lines
113 B
Dart

import 'package:test/test.dart';
void main() {
test("should pass", () {
expect(1 + 1, equals(2));
});
}