OLD | NEW |
(Empty) | |
| 1 library petitparser.test.all_tests; |
| 2 |
| 3 import 'package:test/test.dart'; |
| 4 |
| 5 import 'petitparser_test.dart' as core_test; |
| 6 import 'dart_test.dart' as dart_test; |
| 7 import 'debug_test.dart' as debug_test; |
| 8 import 'json_test.dart' as json_test; |
| 9 import 'lisp_test.dart' as lisp_test; |
| 10 import 'reflection_test.dart' as reflection_test; |
| 11 import 'smalltalk_test.dart' as smalltalk_test; |
| 12 import 'test_test.dart' as test_test; |
| 13 |
| 14 void main() { |
| 15 group('PetitParser', core_test.main); |
| 16 group('Dart', dart_test.main); |
| 17 group('Debug', debug_test.main); |
| 18 group('JSON', json_test.main); |
| 19 group('Lisp', lisp_test.main); |
| 20 group('Reflection', reflection_test.main); |
| 21 group('Smalltalk', smalltalk_test.main); |
| 22 group('Test', test_test.main); |
| 23 } |
OLD | NEW |