OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import "package:test/test.dart"; |
| 6 |
| 7 import "discovery_analysis_test.dart" as discovery_analysis; |
| 8 import "discovery_test.dart" as discovery; |
| 9 import "parse_test.dart" as parse; |
| 10 import "parse_write_test.dart" as parse_write; |
| 11 |
| 12 main() { |
| 13 group("parse:", parse.main); |
| 14 group("discovery:", discovery.main); |
| 15 group("discovery-analysis:", discovery_analysis.main); |
| 16 group("parse/write:", parse_write.main); |
| 17 } |
OLD | NEW |