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

Unified Diff: tests/language/mixin_lib_extends_method_test.dart

Issue 12250018: Mixin tests with libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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
« no previous file with comments | « tests/language/mixin_lib_extends_method_lib.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/mixin_lib_extends_method_test.dart
===================================================================
--- tests/language/mixin_lib_extends_method_test.dart (revision 0)
+++ tests/language/mixin_lib_extends_method_test.dart (revision 0)
@@ -0,0 +1,48 @@
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+import "mixin_lib_extends_method_lib.dart" as L;
+
+class S {
+ foo() => "S-foo";
+ baz() => "S-baz";
+}
+
+class C extends S with L.M1 { }
+class D extends S with L.M1, L.M2 { }
+class E extends S with L.M2, L.M1 { }
+
+class F extends E {
+ fez() => "F-fez";
+}
+
+main() {
+ var c = new C();
+ Expect.equals("S-foo", c.foo());
+ Expect.equals("M1-bar", c.bar());
+ Expect.equals("S-baz", c.baz());
+ Expect.throws(() => c.fez(), (error) => error is NoSuchMethodError);
+ Expect.equals("sugus", c.clo("su")("gus"));
+
+ var d = new D();
+ Expect.equals("S-foo", d.foo());
+ Expect.equals("M2-bar", d.bar());
+ Expect.equals("M2-baz", d.baz());
+ Expect.equals("M2-fez", d.fez());
+ Expect.equals("sugus", d.clo("su")("gus"));
+
+ var e = new E();
+ Expect.equals("S-foo", e.foo());
+ Expect.equals("M1-bar", e.bar());
+ Expect.equals("M2-baz", e.baz());
+ Expect.equals("M2-fez", e.fez());
+ Expect.equals("sugus", e.clo("su")("gus"));
+
+ var f = new F();
+ Expect.equals("S-foo", f.foo());
+ Expect.equals("M1-bar", f.bar());
+ Expect.equals("M2-baz", f.baz());
+ Expect.equals("F-fez", f.fez());
+ Expect.equals("sugus", f.clo("su")("gus"));
+}
« no previous file with comments | « tests/language/mixin_lib_extends_method_lib.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698