summaryrefslogtreecommitdiff
path: root/test/utils/python/testgen/mixins.py
diff options
context:
space:
mode:
author Alex Light <allight@google.com> 2015-10-09 15:59:48 -0700
committer Alex Light <allight@google.com> 2015-11-10 17:20:41 -0800
commit9139e008abe30b7beaf4afd6533228a1dd9b202c (patch)
tree506be89287507bd777bd132627ad963729434969 /test/utils/python/testgen/mixins.py
parentd7c76bd7e867b151ac81ef41810614c7b4cc898e (diff)
Correct exception behavior for default methods
Default methods are defined to throw an IncompatibleClassChangeError (ICCE) when they are called and there is no "best" implementation. Previously we would simply throw an ICCE during class loading as soon as we noticed that this would happen if called. This makes us wait until we actually attempt to execute the method. Furthermore, this allows us to use other, non-conflicting, methods on the object as normal. Furthermore, this makes us correctly throw AbstractMethodErrors in cases where all default implementations of a method are overridden by abstract declarations. Adds 3 tests for this new behavior. Bug: 24618811 Change-Id: Id891958a81f9b3862b2ce5919636aabef7d3422e
Diffstat (limited to 'test/utils/python/testgen/mixins.py')
-rw-r--r--test/utils/python/testgen/mixins.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/utils/python/testgen/mixins.py b/test/utils/python/testgen/mixins.py
index 085e51def2..aa8943baf3 100644
--- a/test/utils/python/testgen/mixins.py
+++ b/test/utils/python/testgen/mixins.py
@@ -79,6 +79,12 @@ class SmaliFileMixin(get_file_extension_mixin(".smali")):
"""
pass
+class JavaFileMixin(get_file_extension_mixin(".java")):
+ """
+ A mixin that defines that the file this class belongs to is get_name() + ".java".
+ """
+ pass
+
class NameComparableMixin(object):
"""
A mixin that defines the object comparison and related functionality in terms