OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
| 5 library observatory_test; |
| 6 |
5 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
6 | 8 |
7 /// Utility for manually running all tests. | 9 import 'package:observatory/service.dart'; |
| 10 |
| 11 part 'class_parser_test.dart'; |
| 12 |
8 main() { | 13 main() { |
9 // group('analysis_services', () { | 14 runClassParserTest(); |
10 // }); | |
11 } | 15 } |
OLD | NEW |