Project

General

Profile

Download (886 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2007 EDIT
3
 * European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 *
6
 * The contents of this file are subject to the Mozilla Public License Version 1.1
7
 * See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9
package eu.etaxonomy.cdm.test.suite;
10

    
11
import org.junit.runner.RunWith;
12
import org.junit.runners.Suite;
13

    
14
import eu.etaxonomy.cdm.common.CdmUtilsTest;
15
import eu.etaxonomy.cdm.common.XmlHelpTest;
16

    
17
@RunWith(Suite.class)
18
@Suite.SuiteClasses(
19
		{
20
			CdmUtilsTest.class,
21
			XmlHelpTest.class
22
		}
23
	)
24
public class CdmTestSuite {
25

    
26
	// the class remains completely empty,
27
	// being used only as a holder for the above annotations
28

    
29
	//console test  //TODO test
30
	public static void consoleRun() {
31
		org.junit.runner.JUnitCore.runClasses(
32
				CdmUtilsTest.class,
33
				XmlHelpTest.class
34
			);
35
	}
36
}
    (1-1/1)