(self, element)
| 66 | return self.is_descendant_from_class(self.get_parent_element(element), class_name) |
| 67 | |
| 68 | def is_abstract(self, element): |
| 69 | return True if "abstract" in element.attrib else False |
| 70 | |
| 71 | def get_attributes(self, element, attributes=None): |
| 72 | if attributes is None: |
no outgoing calls
no test coverage detected