(self)
| 10 | |
| 11 | class test_Track(unittest.TestCase): |
| 12 | def setUp(self): |
| 13 | self.i = Track(Instrument()) |
| 14 | self.p = Track(Piano()) |
| 15 | self.g = Track(Guitar()) |
| 16 | self.tr = Track() |
| 17 | |
| 18 | def test_add(self): |
| 19 | pass |
nothing calls this directly
no test coverage detected