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

Side by Side Diff: pkg/analyzer2dart/test/tree_shaker_test.dart

Issue 535293002: Replicate mock_sdk.dart in analyzer2dart package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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
« no previous file with comments | « pkg/analyzer2dart/test/mock_sdk.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 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 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 import 'package:analysis_testing/mock_sdk.dart'; 5 import 'mock_sdk.dart';
6 import 'package:analyzer/file_system/memory_file_system.dart'; 6 import 'package:analyzer/file_system/memory_file_system.dart';
7 import 'package:analyzer/src/generated/ast.dart'; 7 import 'package:analyzer/src/generated/ast.dart';
8 import 'package:analyzer/src/generated/element.dart'; 8 import 'package:analyzer/src/generated/element.dart';
9 import 'package:analyzer/src/generated/sdk.dart'; 9 import 'package:analyzer/src/generated/sdk.dart';
10 import 'package:analyzer/src/generated/source.dart'; 10 import 'package:analyzer/src/generated/source.dart';
11 import 'package:unittest/unittest.dart'; 11 import 'package:unittest/unittest.dart';
12 12
13 import '../lib/src/closed_world.dart'; 13 import '../lib/src/closed_world.dart';
14 import '../lib/src/driver.dart'; 14 import '../lib/src/driver.dart';
15 15
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 /** 292 /**
293 * Asserts that [world] doesn't contain a method with the given qualified 293 * Asserts that [world] doesn't contain a method with the given qualified
294 * name. 294 * name.
295 * 295 *
296 * [qualifiedName] - the qualified name in form 'className.methodName'. 296 * [qualifiedName] - the qualified name in form 'className.methodName'.
297 */ 297 */
298 void assertNoMethod(String qualifiedName) { 298 void assertNoMethod(String qualifiedName) {
299 expect(methods, isNot(contains(qualifiedName))); 299 expect(methods, isNot(contains(qualifiedName)));
300 } 300 }
301 } 301 }
OLDNEW
« no previous file with comments | « pkg/analyzer2dart/test/mock_sdk.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698