diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-09-01 17:54:19 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-09-09 09:11:42 +0200 |
commit | 874bc9637ec63113201ba697aa55977427ffac01 (patch) | |
tree | 04ecbb10c980944a0b3f46e66a609244ef018afd /server/sonar-ce/src/test | |
parent | 38eaab33b92cbf57d44495a29a60f21a830bb102 (diff) | |
download | sonarqube-874bc9637ec63113201ba697aa55977427ffac01.tar.gz sonarqube-874bc9637ec63113201ba697aa55977427ffac01.zip |
SONAR-7676 removing dead code from Properties related classes
PropertiesDao, PropertiesMapper, Persistentsettings and their tests
Diffstat (limited to 'server/sonar-ce/src/test')
-rw-r--r-- | server/sonar-ce/src/test/java/org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/server/sonar-ce/src/test/java/org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java b/server/sonar-ce/src/test/java/org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java index bcb0549bc18..68cb9b46350 100644 --- a/server/sonar-ce/src/test/java/org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java +++ b/server/sonar-ce/src/test/java/org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java @@ -81,14 +81,6 @@ public class ReadOnlyPropertiesDaoTest { } @Test - public void deleteGlobalProperties() { - underTest.deleteGlobalProperties(); - - assertNoInteraction(); - - } - - @Test public void deleteGlobalProperty() { underTest.deleteGlobalProperty(null); @@ -105,14 +97,6 @@ public class ReadOnlyPropertiesDaoTest { } @Test - public void deleteAllProperties() { - underTest.deleteAllProperties(null); - - assertNoInteraction(); - - } - - @Test public void insertGlobalProperties() { underTest.insertGlobalProperties(null); @@ -129,22 +113,6 @@ public class ReadOnlyPropertiesDaoTest { } @Test - public void updateProperties() { - underTest.updateProperties(null, null, null); - - assertNoInteraction(); - - } - - @Test - public void updateProperties1() { - underTest.updateProperties(null, null, null, dbSession); - - assertNoInteraction(); - - } - - @Test public void setProperty() { underTest.setProperty(oldPropertyDto); |