(self, pytester: Pytester, schema: xmlschema.XMLSchema)
| 34 | |
| 35 | class RunAndParse: |
| 36 | def __init__(self, pytester: Pytester, schema: xmlschema.XMLSchema) -> None: |
| 37 | self.pytester = pytester |
| 38 | self.schema = schema |
| 39 | |
| 40 | def __call__( |
| 41 | self, *args: Union[str, "os.PathLike[str]"], family: Optional[str] = "xunit1" |
nothing calls this directly
no outgoing calls
no test coverage detected