Project

General

Profile

Download (839 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2014 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.remote;
10

    
11
import org.apache.logging.log4j.LogManager;
12
import org.apache.logging.log4j.Logger;
13
import org.junit.Test;
14

    
15
/**
16
 * @author a.kohlbecker
17
 * @since Mar 3, 2014
18
 */
19
public class ClassificationIT extends WebServiceTestBase  {
20

    
21
    public static final Logger logger = LogManager.getLogger(ClassificationIT.class);
22

    
23
    @Test
24
    public void checkInstanceIsOnline(){
25
        String response = httpGetJson("classification.json", null);
26
        logger.debug("response: " + response);
27
        assertTrue(response.contains("My Classification"));
28
    }
29
}
(1-1/4)