(self)
| 33 | ) |
| 34 | |
| 35 | def test_count_strings(self): |
| 36 | self.assertTrue(self.guitar6.count_strings() == 6) |
| 37 | self.assertTrue(self.guitar12.count_strings() == 6) |
| 38 | |
| 39 | def test_count_courses(self): |
| 40 | self.assertTrue(self.guitar6.count_courses() == 1.0) |
nothing calls this directly
no test coverage detected