Project

General

Profile

Download (765 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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
package eu.etaxonomy.cdm.test;
10

    
11
import org.junit.BeforeClass;
12

    
13
import eu.etaxonomy.cdm.model.common.Language;
14
import eu.etaxonomy.cdm.model.term.DefaultTermInitializer;
15

    
16
/**
17
 * There is a copy of this class in cdmlib-model.
18
 *
19
 * @author a.kohlbecker
20
 * @since Feb 21, 2018
21
 */
22
public abstract class TermTestBase {
23

    
24
    @BeforeClass
25
    public final static void intitializeTermsIfNeeded() {
26
        if(Language.DEFAULT() == null){
27
            new DefaultTermInitializer().initialize();
28
        }
29
    }
30
}
    (1-1/1)