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

Side by Side Diff: pkg/docgen/test/multi_library_test.dart

Issue 203753005: pkg/docgen: test fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4
1 library single_library_test; 5 library single_library_test;
2 6
3 import 'package:path/path.dart' as p; 7 import 'package:path/path.dart' as p;
4 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
5 9
6 import '../lib/docgen.dart'; 10 import '../lib/docgen.dart';
7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util. dart' 11 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util. dart'
8 as dart2js_util; 12 as dart2js_util;
9 13
10 import 'util.dart'; 14 import 'util.dart';
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 expect(methodParameterDocComment, 'test_lib.B'); 85 expect(methodParameterDocComment, 'test_lib.B');
82 86
83 methodParameterDocComment = exportedClass.fixReference( 87 methodParameterDocComment = exportedClass.fixReference(
84 'testFunc').children.first.text; 88 'testFunc').children.first.text;
85 expect(methodParameterDocComment, 'test_lib.testFunc'); 89 expect(methodParameterDocComment, 'test_lib.testFunc');
86 90
87 }); 91 });
88 }); 92 });
89 }); 93 });
90 } 94 }
OLDNEW
« no previous file with comments | « pkg/docgen/test/generate_json_test.dart ('k') | pkg/docgen/test/only_lib_content_in_pkg_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698