From 874bc9637ec63113201ba697aa55977427ffac01 Mon Sep 17 00:00:00 2001 From: Sébastien Lesaint Date: Thu, 1 Sep 2016 17:54:19 +0200 Subject: SONAR-7676 removing dead code from Properties related classes PropertiesDao, PropertiesMapper, Persistentsettings and their tests --- .../org/sonar/ce/db/ReadOnlyPropertiesDaoTest.java | 32 ---------------------- 1 file changed, 32 deletions(-) (limited to 'server/sonar-ce/src/test') 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 @@ -80,14 +80,6 @@ public class ReadOnlyPropertiesDaoTest { } - @Test - public void deleteGlobalProperties() { - underTest.deleteGlobalProperties(); - - assertNoInteraction(); - - } - @Test public void deleteGlobalProperty() { underTest.deleteGlobalProperty(null); @@ -104,14 +96,6 @@ public class ReadOnlyPropertiesDaoTest { } - @Test - public void deleteAllProperties() { - underTest.deleteAllProperties(null); - - assertNoInteraction(); - - } - @Test public void insertGlobalProperties() { underTest.insertGlobalProperties(null); @@ -128,22 +112,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); -- cgit v1.2.3