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