Project

General

Profile

Download (1.32 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.apache.log4j.Logger;
13
import org.junit.runner.RunWith;
14
import org.junit.runners.Suite;
15

    
16
import eu.etaxonomy.cdm.persistence.dao.hibernate.common.DefinedTermDaoImplTest;
17
import eu.etaxonomy.cdm.persistence.dao.hibernate.common.IdentifiableDaoBaseTest;
18

    
19

    
20
@RunWith(Suite.class)
21
@Suite.SuiteClasses(
22
        {
23
            DefinedTermDaoImplTest.class,
24
            IdentifiableDaoBaseTest.class
25
            /* FIXED:
26
             * eu.etaxonomy.cdm.persistence.dao.common.OperationNotSupportedInPriorViewException:
27
             *    IdentifiableDaoBase.findByTitle(String queryString, CdmBase sessionObject)
28
             * 	  at eu.etaxonomy.cdm.persistence.dao.hibernate.common.VersionableDaoBase.checkNotInPriorView(VersionableDaoBase.java:63)
29
             *
30
             */
31

    
32
        }
33
    )
34
public class TestsShouldNotFailInSuite_1 {
35

    
36
    private static final  Logger logger = Logger.getLogger(TestsShouldNotFailInSuite_1.class);
37

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

    
41
}
(2-2/4)