Executed before each test in the class
(self)
| 41 | """Executed once before any test in the class""" |
| 42 | |
| 43 | def setUp(self): |
| 44 | """Executed before each test in the class""" |
| 45 | self.t = Task() |
| 46 | |
| 47 | def test_start_stop(self): |
| 48 | """Add, start, stop a task""" |