void testNoteDurations() { Sheet* sheet = new Sheet(); Bar* bar = sheet->addBar(); Part* part = sheet->addPart("part"); Voice* voice = part->addVoice(); Staff* staff = part->addStaff(); VoiceBar* vb = bar->voice(voice); for (Duration d = HundredTwentyEighthNote; d <= BreveNote; d = (Duration)(d + 1)) { Chord* c = new Chord(d); c->addNote(staff, 0); vb->addElement(c); } for (int i = 1; i < 4; i++) { Chord* c = new Chord(QuarterNote, i); c->addNote(staff, 0); vb->addElement(c); } validateOutput(sheet, "notedurations.xml"); delete sheet; }
void testNoteAccidentals() { Sheet* sheet = new Sheet(); Bar* bar = sheet->addBar(); Part* part = sheet->addPart("part"); Voice* voice = part->addVoice(); Staff* staff = part->addStaff(); VoiceBar* vb = bar->voice(voice); for (int a = -2; a <= 2; a++) { Chord* c = new Chord(QuarterNote); c->addNote(staff, 0, a); vb->addElement(c); } validateOutput(sheet, "noteaccidentals.xml"); delete sheet; }
void testNotePitch() { Sheet* sheet = new Sheet(); Bar* bar = sheet->addBar(); Part* part = sheet->addPart("part"); Voice* voice = part->addVoice(); Staff* staff = part->addStaff(); VoiceBar* vb = bar->voice(voice); for (int p = -20; p <= 20; p++) { Chord* c = new Chord(QuarterNote); c->addNote(staff, p); vb->addElement(c); } validateOutput(sheet, "notepitch.xml"); delete sheet; }