Skip to content
Snippets Groups Projects
Commit 00029030 authored by Thiemo Belmega's avatar Thiemo Belmega
Browse files

Unify the spelling of the TestWebService classes

parent c399b918
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ import org.apache.http.impl.client.HttpClientBuilder;
/**
* In contrast to the UnitTests, this integration tests require a running web server to succeed.
*/
public abstract class AbstractTestWebservice {
public abstract class AbstractTestWebService {
protected final static String TOOLUP_URL = "http://localhost:8080/toolup";
......
......@@ -17,7 +17,7 @@ import java.util.Map;
import static de.unipotsdam.cs.toolup.model.BusinessObject.JSON_KEY_ID;
import static org.testng.AssertJUnit.assertTrue;
public class CategoryTestWebservice extends AbstractTestWebservice {
public class CategoryTestWebservice extends AbstractTestWebService {
@Test
public void testThatWebserviceReturnsAllCategoriesThatIncludeAnyApplication() throws Exception {
......
......@@ -25,7 +25,7 @@ import static junit.framework.Assert.assertEquals;
import static org.testng.AssertJUnit.assertTrue;
public class IntegrationTestWebservice extends AbstractTestWebservice {
public class IntegrationTestWebService extends AbstractTestWebService {
private final static String APPLICATION_RESOURCE_URL = "/application/";
private static final String CATEGORY_RESOURCE_URL = "/category/";
......
......@@ -20,7 +20,7 @@ import java.util.ArrayList;
import static junit.framework.Assert.assertEquals;
public class LookupTestWebservice extends AbstractTestWebservice {
public class LookupTestWebService extends AbstractTestWebService {
private final static String LOOKUP_URL = "/lookup";
......
......@@ -20,7 +20,7 @@ import java.util.ArrayList;
import static junit.framework.Assert.assertEquals;
public class SearchTestWebservice extends AbstractTestWebservice {
public class SearchTestWebService extends AbstractTestWebService {
private final static String SEARCH_URL = "/search";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment