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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/PackageLibraryManagerProviderAnyTest.java

Issue 10837369: fix build failure, rename refactor take 2 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/PackageLibraryManagerProviderAnyTest.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/PackageLibraryManagerProviderAnyTest.java (revision 11101)
+++ editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/PackageLibraryManagerProviderAnyTest.java (working copy)
@@ -19,44 +19,44 @@
public class PackageLibraryManagerProviderAnyTest extends PackageLibraryManagerProviderTest {
- public void test_SystemLibraryManagerProvider_builtin() throws Exception {
+ public void test_PackageLibraryManagerProvider_builtin() throws Exception {
testLibrary("builtin", "builtin_runtime.dart");
}
- public void test_SystemLibraryManagerProvider_core() throws Exception {
+ public void test_PackageLibraryManagerProvider_core() throws Exception {
testLibrary("core", "core_runtime.dart");
}
- public void test_SystemLibraryManagerProvider_coreImpl() throws Exception {
+ public void test_PackageLibraryManagerProvider_coreImpl() throws Exception {
testLibrary("coreimpl", "coreimpl_runtime.dart");
}
- public void test_SystemLibraryManagerProvider_html() throws Exception {
+ public void test_PackageLibraryManagerProvider_html() throws Exception {
testLibrary("html", "html_dartium.dart");
}
- public void test_SystemLibraryManagerProvider_io() throws Exception {
+ public void test_PackageLibraryManagerProvider_io() throws Exception {
testLibrary("io", "io_runtime.dart");
}
- public void test_SystemLibraryManagerProvider_isolate() throws Exception {
- testLibrary("isolate", "isolate_compiler.dart");
+ public void test_PackageLibraryManagerProvider_isolate() throws Exception {
+ testLibrary("isolate", "isolate.dart");
}
- public void test_SystemLibraryManagerProvider_json() throws Exception {
+ public void test_PackageLibraryManagerProvider_json() throws Exception {
testLibrary("json", "json.dart");
}
- public void test_SystemLibraryManagerProvider_package() throws Exception {
+ public void test_PackageLibraryManagerProvider_package() throws Exception {
String fileName = "ui" + File.separator + "lib.dart";
testPackage(fileName, "package:" + fileName);
}
- public void test_SystemLibraryManagerProvider_uri() throws Exception {
+ public void test_PackageLibraryManagerProvider_uri() throws Exception {
testLibrary("uri", "uri.dart");
}
- public void test_SystemLibraryManagerProvider_utf() throws Exception {
+ public void test_PackageLibraryManagerProvider_utf() throws Exception {
testLibrary("utf", "utf.dart");
}

Powered by Google App Engine
This is Rietveld 408576698