aboutsummaryrefslogtreecommitdiffstats
path: root/server/process
diff options
context:
space:
mode:
authorStephane Gamard <stephane.gamard@sonarsource.com>2014-09-05 07:59:51 +0200
committerStephane Gamard <stephane.gamard@sonarsource.com>2014-09-05 07:59:51 +0200
commit00d17c71c2482137aa911d7dec33761306cf5c2c (patch)
treecceb4802bbdd30ba50b6020c2260e572eaa8a4c7 /server/process
parentd04c0c86df69c29695acde1a719dc6275d5513b8 (diff)
parent6ab323d834324e41e99f7b76b885ece753248489 (diff)
downloadsonarqube-00d17c71c2482137aa911d7dec33761306cf5c2c.tar.gz
sonarqube-00d17c71c2482137aa911d7dec33761306cf5c2c.zip
Merge branch 'master' into SONAR-5529
Diffstat (limited to 'server/process')
-rw-r--r--server/process/pom.xml2
-rw-r--r--server/process/sonar-dummy-app/pom.xml6
-rw-r--r--server/process/sonar-process/pom.xml2
-rw-r--r--server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java12
4 files changed, 14 insertions, 8 deletions
diff --git a/server/process/pom.xml b/server/process/pom.xml
index b2d9174cbef..bd06cb24b37 100644
--- a/server/process/pom.xml
+++ b/server/process/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar</groupId>
<artifactId>server</artifactId>
- <version>4.5-SNAPSHOT</version>
+ <version>5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/server/process/sonar-dummy-app/pom.xml b/server/process/sonar-dummy-app/pom.xml
index ded06395f6e..9c0f067ebbb 100644
--- a/server/process/sonar-dummy-app/pom.xml
+++ b/server/process/sonar-dummy-app/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar</groupId>
<artifactId>process</artifactId>
- <version>4.5-SNAPSHOT</version>
+ <version>5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -93,4 +93,8 @@
</plugin>
</plugins>
</build>
+
+ <properties>
+ <sonar.exclusions>**/*.java</sonar.exclusions>
+ </properties>
</project>
diff --git a/server/process/sonar-process/pom.xml b/server/process/sonar-process/pom.xml
index 4753b693998..9d812c9d868 100644
--- a/server/process/sonar-process/pom.xml
+++ b/server/process/sonar-process/pom.xml
@@ -5,7 +5,7 @@
<parent>
<groupId>org.codehaus.sonar</groupId>
<artifactId>process</artifactId>
- <version>4.5-SNAPSHOT</version>
+ <version>5.0-SNAPSHOT</version>
<relativePath>../</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
diff --git a/server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java b/server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java
index 5d283b44f8f..6985b0ba086 100644
--- a/server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java
+++ b/server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java
@@ -29,7 +29,7 @@ import static org.fest.assertions.Fail.fail;
public class PropsTest {
@Test
- public void of() throws Exception {
+ public void value() throws Exception {
Properties p = new Properties();
p.setProperty("foo", "bar");
Props props = new Props(p);
@@ -41,7 +41,7 @@ public class PropsTest {
}
@Test
- public void intOf() throws Exception {
+ public void valueAsInt() throws Exception {
Properties p = new Properties();
p.setProperty("foo", "33");
p.setProperty("blank", "");
@@ -56,7 +56,7 @@ public class PropsTest {
}
@Test
- public void intOf_not_integer() throws Exception {
+ public void valueAsInt_not_integer() throws Exception {
Properties p = new Properties();
p.setProperty("foo", "bar");
Props props = new Props(p);
@@ -70,7 +70,7 @@ public class PropsTest {
}
@Test
- public void booleanOf() throws Exception {
+ public void valueAsBoolean() throws Exception {
Properties p = new Properties();
p.setProperty("foo", "True");
p.setProperty("bar", "false");
@@ -82,7 +82,7 @@ public class PropsTest {
}
@Test
- public void booleanOf_default_value() throws Exception {
+ public void valueAsBoolean_default_value() throws Exception {
Properties p = new Properties();
p.setProperty("foo", "true");
p.setProperty("bar", "false");
@@ -114,9 +114,11 @@ public class PropsTest {
Props props = new Props(p);
props.set("foo", "new_foo");
props.set("bar", "new_bar");
+ props.set("null", null);
assertThat(props.value("foo")).isEqualTo("new_foo");
assertThat(props.value("bar")).isEqualTo("new_bar");
+ assertThat(props.value("null")).isNull();
}
@Test