You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rosegarden/src/base/test/accidentals.cpp

59 lines
1.3 KiB

#include "NotationTypes.h"
using namespace Rosegarden;
using std::cout;
// Unit test-ish tests for resolving accidentals
//
// Returns -1 (or crashes :)) on error, 0 on success
void assertHasAccidental(Pitch &pitch,
const Accidental& accidental, const Key& key)
{
Accidental calculatedAccidental =
pitch.getAccidental(key);
std::cout << "Got " << calculatedAccidental << " for pitch " << pitch.getPerformancePitch() << " in key " << key.getName() << std::endl;
if (calculatedAccidental != accidental)
{
std::cout << "Expected " << accidental << std::endl;
exit(-1);
}
}
void testBInEMinor()
{
// a B, also in E minor, has no accidental
Pitch testPitch(59 % 12);
assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("E minor"));
}
/**
*
*/
void testFInBMinor()
{
Pitch testPitch(77);
assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("B minor"));
}
void testInvalidSuggestion()
{
// If we specify an invalid suggestion,
// getAccidental() should be robust against that.
Pitch testPitch = Pitch(59, Accidentals::Sharp);
assertHasAccidental(testPitch,
Accidentals::NoAccidental, Key("E minor"));
}
int main(int argc, char **argv)
{
testBInEMinor();
testFInBMinor();
testInvalidSuggestion();
std::cout << "Success" << std::endl;
exit(0);
}