| Index: test/all_tests.dart
|
| diff --git a/test/all_tests.dart b/test/all_tests.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6cf9e295d4e7fa0de53ed7f23d1eb9fbc636ba53
|
| --- /dev/null
|
| +++ b/test/all_tests.dart
|
| @@ -0,0 +1,11 @@
|
| +// Copyright (c) 2015, the tuple project authors. Please see the AUTHORS
|
| +// file for details. All rights reserved. Use of this source code is governed
|
| +// by a BSD-style license that can be found in the LICENSE file.
|
| +
|
| +library tuple.test;
|
| +
|
| +import 'tuple_test.dart' as tuple_test;
|
| +
|
| +main() {
|
| + tuple_test.main();
|
| +}
|
|
|