(self)
| 100 | # self.assertEqual(b, c) |
| 101 | |
| 102 | def test_get_note_names(self): |
| 103 | b = Bar() |
| 104 | b + "C" |
| 105 | b + "A" |
| 106 | self.assertEqual(["C", "A"], b.get_note_names()) |
| 107 | |
| 108 | def test_determine_chords(self): |
| 109 | b = Bar() |
nothing calls this directly
no test coverage detected