(self, translations: Dict, oval_document: ET.ElementTree)
| 25 | |
| 26 | class OvalParser: |
| 27 | def __init__(self, translations: Dict, oval_document: ET.ElementTree): |
| 28 | self.translations = translations |
| 29 | self.oval_document = OvalDocument(oval_document) |
| 30 | self.all_definitions = self.oval_document.getDefinitions() |
| 31 | self.all_tests = self.oval_document.getTests() |
| 32 | |
| 33 | def get_data(self) -> List[Dict]: |
| 34 | """ |
nothing calls this directly
no test coverage detected