From: simonbrandhof Date: Wed, 22 Sep 2010 21:01:42 +0000 (+0000) Subject: sonar-gwt-api : activate the parallel unit tests X-Git-Tag: 2.6~976 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=4da6caa4a5d513296cdc0f2bdd4e85d6c8301b78;p=sonarqube.git sonar-gwt-api : activate the parallel unit tests --- diff --git a/sonar-ws-client/pom.xml b/sonar-ws-client/pom.xml index 2875ed54b10..fd0bee5b69c 100644 --- a/sonar-ws-client/pom.xml +++ b/sonar-ws-client/pom.xml @@ -87,4 +87,19 @@ test + + + + + + org.apache.maven.plugins + maven-surefire-plugin + + classes + 3 + true + + + + \ No newline at end of file diff --git a/sonar-ws-client/src/test/java/org/sonar/wsclient/services/EventQueryTest.java b/sonar-ws-client/src/test/java/org/sonar/wsclient/services/EventQueryTest.java index 5eec4d1180e..b3a4eb62270 100644 --- a/sonar-ws-client/src/test/java/org/sonar/wsclient/services/EventQueryTest.java +++ b/sonar-ws-client/src/test/java/org/sonar/wsclient/services/EventQueryTest.java @@ -67,7 +67,7 @@ public final class EventQueryTest { assertNotNull(query.getResourceKey()); assertNotNull(query.getCategories()); - final String url = query.getUrl(); + String url = query.getUrl(); assertNotNull(url); assertTrue(url.contains("fromDateTime")); assertTrue(url.contains("toDateTime"));