Chromium Code Reviews| 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 library testrunner_test; | 5 |
| 6 library angular.di.test; | |
|
Siggi Cherem (dart-lang)
2013/12/20 23:40:20
just to document what we discussed - let's rename
blois
2013/12/21 00:00:12
Done. Skipped the pubspec.yaml as it doesn't techn
| |
| 6 | 7 |
| 7 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 import '../../../../third_party/pkg/di/test/main.dart' as di; | |
| 8 | 10 |
| 11 /** | |
| 12 * Tests Angular's DI package | |
| 13 */ | |
| 9 main() { | 14 main() { |
| 10 group('foo', () { | 15 |
| 11 test('bar', () { | 16 group('main', () { |
| 12 expect(true, isTrue); | 17 di.main(); |
| 13 }); | |
| 14 }); | 18 }); |
| 15 } | 19 } |
| 16 | |
| OLD | NEW |