Author: rwesten
Date: Thu Jun 13 09:29:01 2013
New Revision: 1492597
URL: http://svn.apache.org/r1492597
Log:
formatting only
Modified:
stanbol/trunk/integration-tests/src/test/java/org/apache/stanbol/entityhub/it/EntityhubTest.java
Modified:
stanbol/trunk/integration-tests/src/test/java/org/apache/stanbol/entityhub/it/EntityhubTest.java
URL:
http://svn.apache.org/viewvc/stanbol/trunk/integration-tests/src/test/java/org/apache/stanbol/entityhub/it/EntityhubTest.java?rev=1492597&r1=1492596&r2=1492597&view=diff
==============================================================================
---
stanbol/trunk/integration-tests/src/test/java/org/apache/stanbol/entityhub/it/EntityhubTest.java
(original)
+++
stanbol/trunk/integration-tests/src/test/java/org/apache/stanbol/entityhub/it/EntityhubTest.java
Thu Jun 13 09:29:01 2013
@@ -111,7 +111,7 @@ public final class EntityhubTest extends
@Test
public void testEntityCrud() throws IOException, JSONException {
//execution order is important
- testEntityCreation();
+ testEntityCreation();
testEntityCreated();
testEntityUpdate();
testEntityUpdated();
@@ -243,6 +243,7 @@ public final class EntityhubTest extends
re = executor.execute(builder.buildOtherRequest(new HttpDelete(
builder.buildUrl("/entityhub/entity", "id", ehUri))));
re.assertStatus(200);
+
}
@Test
@@ -267,6 +268,7 @@ public final class EntityhubTest extends
int status = re.getResponse().getStatusLine().getStatusCode();
Assert.assertTrue(status == 200 || status == 304);
}
+
testFindNameQuery();
testFindWildcards();
testFindLimitAndOffsetQuery();
@@ -275,7 +277,7 @@ public final class EntityhubTest extends
RequestExecutor re = executor.execute(builder.buildOtherRequest(new
HttpDelete(
builder.buildUrl("/entityhub/entity", "id", "*"))));
re.assertStatus(200);
-
+
}
private void testFindNameQuery() throws IOException, JSONException {