/// Tests the Tempo Marker Array Functions
/// @return True if all tests were executed, false if not
bool ScoreTestSuite::TestCaseTempoMarkerArray()
{
    //------Last Checked------//
    // - Jan 6, 2005
    Score score;
    TEST(wxT("IsValidTempoMarkerIndex - false"), !score.IsValidTempoMarkerIndex(0));
    TEST(wxT("GetTempoMarker - invalid index"), (score.GetTempoMarker(0) == NULL));
    return (true);
}