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