Executed once before any test in the class
(cls)
| 77 | class TestIDPosition(TestCase): |
| 78 | @classmethod |
| 79 | def setUpClass(cls): |
| 80 | """Executed once before any test in the class""" |
| 81 | cls.t = Task() |
| 82 | |
| 83 | cls.t("add one") |
| 84 | cls.t("add two") |
| 85 | |
| 86 | def test_id_read_cmd(self): |
| 87 | """Test id before and after read command""" |