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