(cls)
| 24 | |
| 25 | @classmethod |
| 26 | def setUpClass(cls): |
| 27 | super().setUpClass() |
| 28 | cls.defs = pr.Definition.from_txt_file('defs.txt', to_dict=True) |
| 29 | |
| 30 | def test_orthocenter_no_translate(self): |
| 31 | txt = 'a b c = triangle a b c; h = on_tline h b a c, on_tline h c a b ? perp a h b c' # pylint: disable=line-too-long |
nothing calls this directly
no test coverage detected