KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mountainminds > eclemma > core > AllEclEmmaCoreTests


1 /*******************************************************************************
2  * Copyright (c) 2006 Mountainminds GmbH & Co. KG
3  * This software is provided under the terms of the Eclipse Public License v1.0
4  * See http://www.eclipse.org/legal/epl-v10.html.
5  *
6  * $Id: AllEclEmmaCoreTests.java 194 2006-12-14 23:11:46Z mtnminds $
7  ******************************************************************************/

8 package com.mountainminds.eclemma.core;
9
10 import junit.framework.Test;
11 import junit.framework.TestSuite;
12
13 import com.mountainminds.eclemma.internal.core.SessionManagerTest;
14 import com.mountainminds.eclemma.internal.core.analysis.CounterTest;
15 import com.mountainminds.eclemma.internal.core.analysis.JavaElementCoverageTest;
16 import com.mountainminds.eclemma.internal.core.analysis.LinesTest;
17 import com.mountainminds.eclemma.internal.core.analysis.TypeTraverserTest;
18
19 /**
20  * Suite of all EclEmma core tests.
21  *
22  * @author Marc R. Hoffmann
23  * @version $Revision: 194 $
24  */

25 public class AllEclEmmaCoreTests {
26   
27   public static Test suite() {
28     TestSuite suite = new TestSuite();
29
30     // com.mountainminds.eclemma.core.*
31
suite.addTestSuite(EclEmmaStatusTest.class);
32     
33     // com.mountainminds.eclemma.internal.core.*
34
suite.addTestSuite(SessionManagerTest.class);
35     
36     // com.mountainminds.eclemma.internal.core.analysis.*
37
suite.addTestSuite(CounterTest.class);
38     suite.addTestSuite(JavaElementCoverageTest.class);
39     suite.addTestSuite(TypeTraverserTest.class);
40     suite.addTestSuite(LinesTest.class);
41    
42     return suite;
43   }
44
45 }
46
Popular Tags