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

Side by Side Diff: tests/compiler/dart2js_native/native_equals_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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:_js_helper"; 5 import 'native_testing.dart';
6 import "package:expect/expect.dart";
7 6
8 @Native("A") 7 @Native("A")
9 class A {} 8 class A {}
10 9
10 int calls = 0;
11 @Native("B")
12 class B {
13 bool operator==(other) {
14 ++calls;
15 return other is B;
16 }
17 int get hashCode => 1;
18 }
19
11 makeA() native ; 20 makeA() native ;
21 makeB() native ;
12 22
13 void setup() native """ 23 void setup() native """
14 function A() {} 24 function A() {}
25 function B() {}
15 makeA = function(){return new A;}; 26 makeA = function(){return new A;};
27 makeB = function(){return new B;};
28
29 self.nativeConstructor(B);
16 """; 30 """;
17 31
18 main() { 32 main() {
33 nativeTesting();
19 setup(); 34 setup();
20 var a = makeA(); 35 var a = makeA();
21 Expect.isTrue(a == a); 36 Expect.isTrue(a == a);
22 Expect.isTrue(identical(a, a)); 37 Expect.isTrue(identical(a, a));
23 38
24 Expect.isFalse(a == makeA()); 39 Expect.isFalse(a == makeA());
25 Expect.isFalse(identical(a, makeA())); 40 Expect.isFalse(identical(a, makeA()));
41
42 var b = makeB();
43 Expect.isTrue(b == b);
44 Expect.isTrue(identical(b, b));
45
46 Expect.isTrue(b == makeB());
47 Expect.isFalse(identical(b, makeB()));
48
49 Expect.equals(2, calls);
26 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698