
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.
8 lines
113 B
Dart
8 lines
113 B
Dart
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test("should pass", () {
|
|
expect(1 + 1, equals(2));
|
|
});
|
|
}
|