Project

General

Profile

Download (783 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.log4j.Logger;
12
import org.junit.Test;
13

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

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

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