Project

General

Profile

Download (1.01 KB) 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

    
10
package eu.etaxonomy.cdm.test.suite;
11

    
12
import org.junit.runner.RunWith;
13
import org.junit.runners.Suite;
14
import org.apache.log4j.Logger;
15

    
16
import eu.etaxonomy.cdm.common.CdmUtilsTest;
17
import eu.etaxonomy.cdm.common.XmlHelpTest;
18

    
19
@RunWith(Suite.class)
20
@Suite.SuiteClasses( 
21
		{ 	
22
			CdmUtilsTest.class,
23
			XmlHelpTest.class
24
		}
25
	)
26
public class CdmTestSuite {
27
	@SuppressWarnings("unused")
28
	private static final Logger logger = Logger.getLogger(CdmTestSuite.class);
29

    
30
	// the class remains completely empty, 
31
	// being used only as a holder for the above annotations
32

    
33
	//console test  //TODO test
34
	public static void consoleRun() {
35
		org.junit.runner.JUnitCore.runClasses(
36
				CdmUtilsTest.class, 
37
				XmlHelpTest.class
38
			);
39
	}
40
}
    (1-1/1)