Configure Integration Tests.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
log4j.rootLogger=WARN, stdout, R
|
||||
log4j.logger.com.wisemapping=WARN,stdout,R
|
||||
log4j.logger.org.springframework=DEBUG,stdout,R
|
||||
log4j.logger.org.springframework=WARN,stdout,R
|
||||
log4j.logger.org.codehaus.jackson=WARN,stdout,R
|
||||
|
||||
# Stdout logger <20>
|
||||
|
@@ -10,7 +10,6 @@ import com.wisemapping.model.MindMap;
|
||||
import org.apache.batik.transcoder.TranscoderException;
|
||||
import org.apache.commons.io.FileUtils;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.DataProvider;
|
||||
import org.testng.annotations.Test;
|
||||
import org.xml.sax.SAXException;
|
||||
|
@@ -0,0 +1,17 @@
|
||||
package com.wisemapping.test.rest;
|
||||
|
||||
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
|
||||
@Test
|
||||
public class RestAdminITCase {
|
||||
|
||||
@Test
|
||||
public void createNewUser() {
|
||||
String uri = "http://localhost:9000/service/admin/user";
|
||||
|
||||
// RestTemplate template = new RestTemplate();
|
||||
// location = template.postForLocation(uri);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user