Project

General

Profile

Download (741 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
 * @date Mar 3, 2014
17
 *
18
 */
19

    
20
public class ClassificationIT extends WebServiceTestBase  {
21

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

    
24
    @Test
25
    public void checkInstanceIsOnline(){
26
        String response = httpGetJson("classification.json", null);
27
        assertTrue(response.contains("My Classification"));
28
    }
29

    
30
}
(1-1/3)