(cls)
| 38 | class TestOperatorsIdentity(TestCase): |
| 39 | @classmethod |
| 40 | def setUpClass(cls): |
| 41 | cls.t = Task() |
| 42 | |
| 43 | cls.t("add one project:A priority:H") |
| 44 | cls.t("add two project:A") |
| 45 | cls.t("add three priority:H") |
| 46 | cls.t("add four") |
| 47 | |
| 48 | # AND operator # |
| 49 |