(self)
| 142 | self.assertTrue(fluidsynth.play_Track(t), 0) |
| 143 | |
| 144 | def test_track(self): |
| 145 | b = Bar() |
| 146 | b + Note("C") |
| 147 | b + Note("E") |
| 148 | b + Note("A") |
| 149 | b + "E" |
| 150 | t = Track() |
| 151 | t + b |
| 152 | t + b |
| 153 | self.assertTrue(fluidsynth.play_Track(t), 0) |
| 154 | |
| 155 | def test_tracks(self): |
| 156 | b = Bar() |
nothing calls this directly
no test coverage detected