]> source.dussan.org Git - sonarqube.git/commitdiff
Add minor test + remove sonar-dummy-app from analysis
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 3 Sep 2014 09:46:33 +0000 (11:46 +0200)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Wed, 3 Sep 2014 09:46:45 +0000 (11:46 +0200)
server/process/sonar-dummy-app/pom.xml
server/process/sonar-process/src/test/java/org/sonar/process/PropsTest.java

index ded06395f6efaa513afc77b61ff467d886f01b0a..672d448acb717a407a9949bb75835468050f97e9 100644 (file)
@@ -93,4 +93,8 @@
       </plugin>
     </plugins>
   </build>
+
+  <properties>
+    <sonar.exclusions>**/*.java</sonar.exclusions>
+  </properties>
 </project>
index 5d283b44f8f63bdf06d2af89ffc2b9049af14b73..6985b0ba0869c4918f96af432af734ef6f1a6c9a 100644 (file)
@@ -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