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

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

Issue 1130763003: Get computeError working (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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/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 70d829a269d8844cbec16c24ac734e9136cc34b2..8759b283a561d3c72de0c9b1ab1b143ceefcec58 100644
--- a/pkg/analyzer/test/src/context/context_test.dart
+++ b/pkg/analyzer/test/src/context/context_test.dart
@@ -59,7 +59,7 @@ class AnalysisContextImplTest extends AbstractContextTest {
fail('Should have failed');
}
- void fail_applyChanges_overriddenSource() {
+ void test_applyChanges_overriddenSource() {
// Note: addSource adds the source to the contentCache.
Source source = addSource("/test.dart", "library test;");
context.computeErrors(source);
@@ -140,13 +140,13 @@ import 'libB.dart';''';
});
}
- void fail_computeErrors_dart_none() {
+ void test_computeErrors_dart_none() {
Source source = addSource("/lib.dart", "library lib;");
List<AnalysisError> errors = context.computeErrors(source);
expect(errors, hasLength(0));
}
- void fail_computeErrors_dart_part() {
+ void test_computeErrors_dart_part() {
Source librarySource =
addSource("/lib.dart", "library lib; part 'part.dart';");
Source partSource = addSource("/part.dart", "part of 'lib';");
@@ -156,7 +156,7 @@ import 'libB.dart';''';
expect(errors.length > 0, isTrue);
}
- void fail_computeErrors_dart_some() {
+ void test_computeErrors_dart_some() {
Source source = addSource("/lib.dart", "library 'lib';");
List<AnalysisError> errors = context.computeErrors(source);
expect(errors, isNotNull);
@@ -312,7 +312,7 @@ class A {
expect(element, same(myEnum));
}
- void fail_getErrors_dart_none() {
+ void test_getErrors_dart_none() {
Source source = addSource("/lib.dart", "library lib;");
var errorInfo = context.getErrors(source);
expect(errorInfo, isNotNull);
@@ -323,18 +323,17 @@ class A {
expect(errors, hasLength(0));
}
- void fail_getErrors_dart_some() {
+ void test_getErrors_dart_some() {
Source source = addSource("/lib.dart", "library 'lib';");
var errorInfo = context.getErrors(source);
expect(errorInfo, isNotNull);
List<AnalysisError> errors = errorInfo.errors;
expect(errors, hasLength(0));
- context.computeErrors(source);
- errors = errorInfo.errors;
+ errors = context.computeErrors(source);
expect(errors, hasLength(1));
}
- void fail_getErrors_html_none() {
+ void test_getErrors_html_none() {
Source source = addSource("/test.html", "<html></html>");
AnalysisErrorInfo errorInfo = context.getErrors(source);
expect(errorInfo, isNotNull);

Powered by Google App Engine
This is Rietveld 408576698