Project

General

Profile

Download (1.46 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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

    
15

    
16

    
17
@RunWith(Suite.class)
18
@Suite.SuiteClasses(
19
		{
20
		    eu.etaxonomy.cdm.api.service.description.DistributionAggregationTest.class,
21
		    eu.etaxonomy.cdm.api.service.UserAndGroupServiceImplTest.class,
22
		    eu.etaxonomy.cdm.api.util.DerivedUnitConverterIntegrationTest.class
23
		    /*
24
		     * all test in DerivedUnitConverterIntegrationTest where failing due to a
25
		     *
26
		     * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
27
		     * org.springframework.transaction.IllegalTransactionStateException:
28
		     * Pre-bound JDBC Connection found! HibernateTransactionManager does
29
		     * not support running within DataSourceTransactionManager if told to
30
		     * manage the DataSource itself. It is recommended to use a single
31
		     * HibernateTransactionManager for all transactions on a single
32
		     * DataSource, no matter whether Hibernate or JDBC access
33
             * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
34
		     */
35
		}
36
	)
37
public class TestsShouldNotFailInSuite_s5 {
38

    
39
	// the class remains completely empty,
40
	// being used only as a holder for the above annotations
41

    
42
}
(6-6/7)