(self)
| 90 | fluidsynth.stop_NoteContainer(NoteContainer(["E", "G", Note("C", 6)]), 0) |
| 91 | |
| 92 | def test_playbar(self): |
| 93 | b = Bar() |
| 94 | b + Note("C") |
| 95 | b + Note("E") |
| 96 | b + Note("G") |
| 97 | self.assertTrue(fluidsynth.play_Bar(b), 0) |
| 98 | |
| 99 | def test_playbars(self): |
| 100 | b = Bar() |