| 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);
|
|
|