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

Unified Diff: pkg/analyzer/test/src/context/context_test.dart

Issue 2522543007: Remove uses of configuration data (Closed)
Patch Set: clean-up Created 4 years, 1 month 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
« no previous file with comments | « pkg/analyzer/test/generated/engine_test.dart ('k') | pkg/analyzer/test/src/task/options_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/context/context_test.dart
diff --git a/pkg/analyzer/test/src/context/context_test.dart b/pkg/analyzer/test/src/context/context_test.dart
index 2379a053459b0429180b987a4f0f32fc5ac800c2..b9d77b17075cc9e10ed1b9f9d713737fdcc09051 100644
--- a/pkg/analyzer/test/src/context/context_test.dart
+++ b/pkg/analyzer/test/src/context/context_test.dart
@@ -977,15 +977,6 @@ main() {}''');
});
}
- void test_configurationData() {
- var key = new ResultDescriptor('test_key', 'TEST_DEFAULT');
- var testData = ['test', 'data'];
- context.setConfigurationData(key, testData);
- expect(context.getConfigurationData(key), testData);
- var unusedKey = new ResultDescriptor('unused_key', 'UNUSED_DEFAULT');
- expect(context.getConfigurationData(unusedKey), 'UNUSED_DEFAULT');
- }
-
void test_dispose() {
expect(context.isDisposed, isFalse);
context.dispose();
« no previous file with comments | « pkg/analyzer/test/generated/engine_test.dart ('k') | pkg/analyzer/test/src/task/options_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698