| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 | 5 |
| 6 library angular.di.test; | 6 library angular.di.test; |
| 7 | 7 |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 import '../../../third_party/pkg/di/test/main.dart' as di; | 9 import '../../../third_party/pkg/di/test/main.dart' as di; |
| 10 | 10 |
| 11 /** | 11 /** |
| 12 * Tests Angular's DI package | 12 * Tests Angular's DI package |
| 13 */ | 13 */ |
| 14 main() { | 14 main() { |
| 15 | |
| 16 group('main', () { | 15 group('main', () { |
| 17 di.main(); | 16 di.main(); |
| 18 }); | 17 }); |
| 19 } | 18 } |
| OLD | NEW |