| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <body> | 2 <body> |
| 3 <script type='application/javascript' src='../../../../dart/pkg/unittest/test_co
ntroller.js'></script> | 3 <script type='application/javascript' src='../../../../dart/pkg/unittest/lib/tes
t_controller.js'></script> |
| 4 <script type=application/dart> | 4 <script type=application/dart> |
| 5 // FIXME: Remove this test once it can be moved to the Dart | 5 // FIXME: Remove this test once it can be moved to the Dart |
| 6 // repository. The standard Dart test framework doesn't support package | 6 // repository. The standard Dart test framework doesn't support package |
| 7 // directories. | 7 // directories. |
| 8 | 8 |
| 9 #import('../../../../dart/pkg/unittest/lib/unittest.dart'); | 9 #import('../../../../dart/pkg/unittest/lib/unittest.dart'); |
| 10 #import('../../../../dart/pkg/unittest/lib/html_config.dart'); | 10 #import('../../../../dart/pkg/unittest/lib/html_config.dart'); |
| 11 #import('package:package1.dart'); | 11 #import('package:package1.dart'); |
| 12 #import('package:package2/package2.dart'); | 12 #import('package:package2/package2.dart'); |
| 13 | 13 |
| 14 main() { | 14 main() { |
| 15 useHtmlConfiguration(true); | 15 useHtmlConfiguration(true); |
| 16 | 16 |
| 17 test('package', () { | 17 test('package', () { |
| 18 Expect.equals(foo, bar); | 18 Expect.equals(foo, bar); |
| 19 }); | 19 }); |
| 20 } | 20 } |
| 21 </script> | 21 </script> |
| 22 | 22 |
| 23 </body> | 23 </body> |
| 24 </html> | 24 </html> |
| OLD | NEW |