01: /**********************************************************************************
02: *
03: * $Id: GradebookTestSuite.java 21808 2007-02-22 00:35:45Z ray@media.berkeley.edu $
04: *
05: ***********************************************************************************
06: *
07: * Copyright (c) 2006 The Regents of the University of California, The MIT Corporation
08: *
09: * Licensed under the Educational Community License, Version 1.0 (the "License");
10: * you may not use this file except in compliance with the License.
11: * You may obtain a copy of the License at
12: *
13: * http://www.opensource.org/licenses/ecl1.php
14: *
15: * Unless required by applicable law or agreed to in writing, software
16: * distributed under the License is distributed on an "AS IS" BASIS,
17: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18: * See the License for the specific language governing permissions and
19: * limitations under the License.
20: *
21: **********************************************************************************/package org.sakaiproject.tool.gradebook.test;
22:
23: import junit.framework.Test;
24: import junit.framework.TestCase;
25: import junit.framework.TestSuite;
26:
27: public class GradebookTestSuite extends TestCase {
28: public static Test suite() {
29: TestSuite suite = new TestSuite();
30:
31: // This test must run first to be useful, since
32: // it tests automatic updating of a blank database.
33: suite.addTestSuite(GradeMappingConfigTest.class);
34: suite.addTestSuite(AssignmentSortingTest.class);
35: suite.addTestSuite(CalculationsTest.class);
36: suite.addTestSuite(GradableObjectManagerTest.class);
37: suite.addTestSuite(GradeManagerTest.class);
38: suite.addTestSuite(GradebookManagerTest.class);
39: suite.addTestSuite(GradebookServiceInternalTest.class);
40: suite.addTestSuite(GradebookServiceTest.class);
41: suite.addTestSuite(GradeMappingTest.class);
42: suite.addTestSuite(SpreadsheetTest.class);
43: suite.addTestSuite(GradeCommentTest.class);
44: return suite;
45: }
46: }
|