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

Unified Diff: tests/language/setter4_test.dart

Issue 2121143002: Update tests to make latent errors explicit. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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: tests/language/setter4_test.dart
diff --git a/tests/language/setter4_test.dart b/tests/language/setter4_test.dart
index 8428a7a2240cb26716d6843698b1aee797ac7664..0fea7fe6cfba4acf442d547e74e7e2a27c21376e 100644
--- a/tests/language/setter4_test.dart
+++ b/tests/language/setter4_test.dart
@@ -4,14 +4,23 @@
// Dart test to catch error reporting bugs in class fields declarations.
// Should be an error because we have a setter overriding a function name.
+import 'package:expect/expect.dart';
+
class A {
+ int i;
int a() {
return 1;
}
void set a(var val) {
- int i = val;
+ i = val;
}
}
main() {
+ var a = new A();
+ Expect.isNull(a.i);
+ Expect.equals(a.a(), 1);
+ a.a = 2;
+ Expect.equals(a.a(), 1);
+ Expect.equals(a.i, 2);
}
« tests/language/language_dart2js.status ('K') | « tests/language/regress_22976_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698