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

Unified Diff: tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart

Issue 2379173002: Add native_testing library to mock @Native classes (Closed)
Patch Set: xxx 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
Index: tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart
diff --git a/tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart b/tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart
index aaa578b78db63edfd101bfc16d7cb9185741a9b3..a18c31c48cfc471d5db486e8e61453736d186678 100644
--- a/tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart
+++ b/tests/compiler/dart2js_native/native_field_rename_1_frog_test.dart
@@ -6,8 +6,7 @@
// fields. However, native fields keep their name. The implication: a getter
// for the field must be based on the field's name, not the field's jsname.
-import "package:expect/expect.dart";
-import 'dart:_js_helper' show Native, JSName;
+import 'native_testing.dart';
@Native("A")
class A {
@@ -44,13 +43,15 @@ X.prototype.key = function(){return 666;};
makeA = function(){return new A};
makeX = function(){return new X};
+
+self.nativeConstructor(A);
+self.nativeConstructor(X);
""";
testDynamic() {
- var things = [makeA(), new B(), makeX()];
- var a = things[0];
- var b = things[1];
- var x = things[2];
+ var a = confuse(makeA());
+ var b = confuse(new B());
+ var x = confuse(makeX());
Expect.equals(111, a.key);
Expect.equals(222, b.key);
@@ -77,6 +78,7 @@ testTyped() {
}
main() {
+ nativeTesting();
setup();
testTyped();

Powered by Google App Engine
This is Rietveld 408576698