Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: pkg/third_party/di/test/di_test.dart

Issue 107003007: Adding Angular's DI package & Dart unittests which test it. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/pkg/README » ('j') | third_party/pkg/README » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « no previous file | third_party/pkg/README » ('j') | third_party/pkg/README » ('J')

Powered by Google App Engine
This is Rietveld 408576698