Project

General

Profile

Download (980 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

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

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

    
17

    
18
@RunWith(Suite.class)
19
@Suite.SuiteClasses(
20
		{
21
//			TaxonServiceImplTest.class
22
			//,CreateDataTest.class
23
		}
24
	)
25
public class CdmTestSuite {
26
	static Logger logger = LogManager.getLogger(CdmTestSuite.class);
27

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

    
31
	//console test  //TODO test
32
	public static void consoleRun() {
33
		org.junit.runner.JUnitCore.runClasses(
34
//				TaxonServiceImplTest.class
35
				//,CreateDataTest.class
36
			);
37
	}
38
}
    (1-1/1)