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

Unified Diff: pkg/analyzer/test/file_system/resource_uri_resolver_test.dart

Issue 428303004: Breaking changes in 'analyzer' package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename Source.resolveRelative to resolveRelativeUri, soften version constraints Created 6 years, 4 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: pkg/analyzer/test/file_system/resource_uri_resolver_test.dart
diff --git a/pkg/analyzer/test/file_system/resource_uri_resolver_test.dart b/pkg/analyzer/test/file_system/resource_uri_resolver_test.dart
index 76761cbc8bd2e52bcc48a4ffdeae78f223c67be6..c5eeed226db2df759e5c7b352c3b4ca9fe545de3 100644
--- a/pkg/analyzer/test/file_system/resource_uri_resolver_test.dart
+++ b/pkg/analyzer/test/file_system/resource_uri_resolver_test.dart
@@ -23,22 +23,6 @@ main() {
provider.newFolder('/folder');
});
- group('fromEncoding', () {
- test('file', () {
- var uri = new Uri(path: '/test.dart');
- Source source = resolver.fromEncoding(UriKind.FILE_URI, uri);
- expect(source, isNotNull);
- expect(source.exists(), isTrue);
- expect(source.fullName, '/test.dart');
- });
-
- test('not a UriKind.FILE_URI', () {
- var uri = new Uri(path: '/test.dart');
- Source source = resolver.fromEncoding(UriKind.DART_URI, uri);
- expect(source, isNull);
- });
- });
-
group('resolveAbsolute', () {
test('file', () {
var uri = new Uri(scheme: 'file', path: '/test.dart');
« no previous file with comments | « pkg/analyzer/test/file_system/physical_resource_provider_test.dart ('k') | pkg/analyzer/test/generated/element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698