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

Unified Diff: packages/analyzer/test/generated/java_io_test.dart

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: packages/analyzer/test/generated/java_io_test.dart
diff --git a/packages/analyzer/test/generated/java_io_test.dart b/packages/analyzer/test/generated/java_io_test.dart
index 2bd611d1ce6c007c4fe276fa7b8204b4b2591632..ca2f62747185151252578156c5f178159f3c8f29 100644
--- a/packages/analyzer/test/generated/java_io_test.dart
+++ b/packages/analyzer/test/generated/java_io_test.dart
@@ -2,9 +2,10 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library engine.java_io_test;
+library analyzer.test.generated.java_io_test;
import 'package:analyzer/src/generated/java_io.dart';
+import 'package:path/path.dart' as path;
import 'package:unittest/unittest.dart';
import '../utils.dart';
@@ -15,24 +16,24 @@ main() {
group('toURI', () {
test('forAbsolute', () {
String tempPath = '/temp';
- String path = JavaFile.pathContext.join(tempPath, 'foo.dart');
+ String absolutePath = path.context.join(tempPath, 'foo.dart');
// we use an absolute path
- expect(JavaFile.pathContext.isAbsolute(path), isTrue,
- reason: '"$path" is not absolute');
+ expect(path.context.isAbsolute(absolutePath), isTrue,
+ reason: '"$absolutePath" is not absolute');
// test that toURI() returns an absolute URI
- Uri uri = new JavaFile(path).toURI();
+ Uri uri = new JavaFile(absolutePath).toURI();
expect(uri.isAbsolute, isTrue);
expect(uri.scheme, 'file');
});
test('forRelative', () {
String tempPath = '/temp';
- String path = JavaFile.pathContext.join(tempPath, 'foo.dart');
- expect(JavaFile.pathContext.isAbsolute(path), isTrue,
- reason: '"$path" is not absolute');
+ String absolutePath = path.context.join(tempPath, 'foo.dart');
+ expect(path.context.isAbsolute(absolutePath), isTrue,
+ reason: '"$absolutePath" is not absolute');
// prepare a relative path
// We should not check that "relPath" is actually relative -
// it may be not on Windows, if "temp" is on other disk.
- String relPath = JavaFile.pathContext.relative(path);
+ String relPath = path.context.relative(absolutePath);
// test that toURI() returns an absolute URI
Uri uri = new JavaFile(relPath).toURI();
expect(uri.isAbsolute, isTrue);
« no previous file with comments | « packages/analyzer/test/generated/java_core_test.dart ('k') | packages/analyzer/test/generated/non_error_resolver_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698