Executed once before any test in the class
(cls)
| 182 | class TestSubprojects(TestCase): |
| 183 | @classmethod |
| 184 | def setUpClass(cls): |
| 185 | """Executed once before any test in the class""" |
| 186 | cls.t = Task() |
| 187 | cls.t("add project:abc abc") |
| 188 | cls.t("add project:ab ab") |
| 189 | cls.t("add project:a a") |
| 190 | cls.t("add project:b b") |
| 191 | |
| 192 | def test_project_exact1(self): |
| 193 | """Verify single character exact""" |