Executed before each test in the class
(self)
| 189 | |
| 190 | class TestAnnotation(TestCase): |
| 191 | def setUp(self): |
| 192 | """Executed before each test in the class""" |
| 193 | self.t = Task() |
| 194 | self.t.config("confirmation", "1") |
| 195 | |
| 196 | def test_blank_annotation(self): |
| 197 | """Verify blank annotations are prevented""" |