From cb86effb382e24de4076bb1ccb74ade0c60e450d Mon Sep 17 00:00:00 2001 From: Tim Donohue Date: Wed, 13 Feb 2019 22:04:16 +0000 Subject: [PATCH] Correct comments to be more accurate --- .../src/test/java/org/dspace/app/sword/Swordv1IT.java | 8 +++++--- .../src/test/java/org/dspace/app/sword2/Swordv2IT.java | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/dspace-spring-rest/src/test/java/org/dspace/app/sword/Swordv1IT.java b/dspace-spring-rest/src/test/java/org/dspace/app/sword/Swordv1IT.java index 8e7b38a9af..24244e1773 100644 --- a/dspace-spring-rest/src/test/java/org/dspace/app/sword/Swordv1IT.java +++ b/dspace-spring-rest/src/test/java/org/dspace/app/sword/Swordv1IT.java @@ -24,9 +24,11 @@ import org.springframework.http.ResponseEntity; import org.springframework.test.context.TestPropertySource; /** - * Integration test to test the /sword endpoint which loads/embeds the SWORD webapp into the REST API. - * This is a AbstractWebClientIntegrationTest because testing the SWORD webapp requires - * running a web server (as the SWORD webapp makes use of Servlets, not Controllers). + * Integration test to verify that the /sword endpoint is responding as a valid SWORD endpoint. + * This tests that our dspace-sword module is running at this endpoint. + *

+ * This is a AbstractWebClientIntegrationTest because testing dspace-sword requires + * running a web server (as dspace-sword makes use of Servlets, not Controllers). * * @author Tim Donohue */ diff --git a/dspace-spring-rest/src/test/java/org/dspace/app/sword2/Swordv2IT.java b/dspace-spring-rest/src/test/java/org/dspace/app/sword2/Swordv2IT.java index cc672df9fc..95ec762514 100644 --- a/dspace-spring-rest/src/test/java/org/dspace/app/sword2/Swordv2IT.java +++ b/dspace-spring-rest/src/test/java/org/dspace/app/sword2/Swordv2IT.java @@ -24,9 +24,11 @@ import org.springframework.http.ResponseEntity; import org.springframework.test.context.TestPropertySource; /** - * Integration test to test the /swordv2 endpoint which loads/embeds the SWORDv2 webapp into the REST API. - * This is a AbstractWebClientIntegrationTest because testing the SWORDv2 webapp requires - * running a web server (as the SWORDv2 webapp makes use of Servlets, not Controllers). + * Integration test to verify the /swordv2 endpoint is responding as a valid SWORDv2 endpoint. + * This tests that our dspace-swordv2 module is running at this endpoint. + *

+ * This is a AbstractWebClientIntegrationTest because testing dspace-swordv2 requires + * running a web server (as dspace-swordv2 makes use of Servlets, not Controllers). * * @author Tim Donohue */