| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 #import('../lang.dart'); | 5 #import('../lang.dart'); |
| 6 | 6 |
| 7 #source('ParserTest.dart'); | 7 #source('parser_test.dart'); |
| 8 #source('TokenizerTest.dart'); | 8 #source('tokenizer_test.dart'); |
| 9 | 9 |
| 10 // TODO(jimhug): Replace this with proper test harness integration. | 10 // TODO(jimhug): Replace this with proper test harness integration. |
| 11 void main() { | 11 void main() { |
| 12 TokenizerTest.main(); | 12 TokenizerTest.main(); |
| 13 ParserTest.main(); | 13 ParserTest.main(); |
| 14 print('all tests finished'); | 14 print('all tests finished'); |
| 15 } | 15 } |
| OLD | NEW |