From 11d02e12bc461895a522ec4f4454a1dcdd57b7d9 Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Mon, 10 Nov 2014 12:50:54 -0600 Subject: [PATCH] DATAREST-387 - Separated integration tests for individual stores. Original pull request: #156. --- spring-data-rest-webmvc/pom.xml | 101 +++++++++++++++++- .../data/rest/webmvc/solr/SolrWebTests.java | 1 - 2 files changed, 100 insertions(+), 2 deletions(-) diff --git a/spring-data-rest-webmvc/pom.xml b/spring-data-rest-webmvc/pom.xml index f833f12e9..45c7665bd 100644 --- a/spring-data-rest-webmvc/pom.xml +++ b/spring-data-rest-webmvc/pom.xml @@ -113,7 +113,7 @@ org.apache.solr solr-core - 4.7.2 + 4.10.1 test @@ -129,4 +129,103 @@ + + + + org.apache.maven.plugins + maven-surefire-plugin + + + default-test + + + **/* + + + + + base-tests + + test + + test + + + **/*Test*.java + + + + **/gemfire/*Test*.java + **/jpa/*Test*.java + **/mongodb/*Test*.java + **/neo4j/*Test*.java + **/solr/*Test*.java + + + + + gemfire-tests + + test + + test + + + **/gemfire/*Test*.java + + + + + jpa-tests + + test + + test + + + **/jpa/*Test*.java + + + + + mongodb-tests + + test + + test + + + **/mongodb/*Test*.java + + + + + neo4j-tests + + test + + test + + + **/neo4j/*Test*.java + + + + + solr-tests + + test + + test + + + **/solr/*Test*.java + + + + + + + + diff --git a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/solr/SolrWebTests.java b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/solr/SolrWebTests.java index ad5c6a154..81393317f 100644 --- a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/solr/SolrWebTests.java +++ b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/solr/SolrWebTests.java @@ -61,7 +61,6 @@ public class SolrWebTests extends AbstractWebIntegrationTests { String solrHomeDir() { return TEMP_FOLDER.getRoot().getAbsolutePath(); } - } @Autowired ProductRepository repo;