Project

General

Profile

Download (816 Bytes) 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
import eu.etaxonomy.cdm.api.facade.DerivedUnitFacadeTest;
16
import eu.etaxonomy.cdm.api.service.NameServiceImplTest;
17

    
18

    
19

    
20
@RunWith(Suite.class)
21
@Suite.SuiteClasses(
22
        {
23
            DerivedUnitFacadeTest.class,
24
            NameServiceImplTest.class
25
        }
26
    )
27
public class TestsShouldNotFailInSuite_s2 {
28

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

    
32
}
(3-3/7)