| 204 | #define RUN_TEST(testFunction) do { printf("%s()... ", #testFunction); testFunction(); printf("OK\n"); } while (0) |
| 205 | |
| 206 | int main(int argc, const char * argv[]) { |
| 207 | RUN_TEST(testMidiOutput); |
| 208 | RUN_TEST(testMidiOutput_OnOff); |
| 209 | RUN_TEST(testPresetIgnoredParameters); |
| 210 | RUN_TEST(testPresetValueStrings); |
| 211 | RUN_TEST(testMidiAllNotesOff); |
| 212 | RUN_TEST(testOscillatorHighFrequency); |
| 213 | return 0; |
| 214 | } |
nothing calls this directly
no outgoing calls
no test coverage detected