From 4687c7dcdab2fc0eeb72af10090c49be7c1f3359 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Fri, 3 Jan 2014 14:05:01 -0500 Subject: [PATCH] removed test for deleteExistingData (which was also removed from the class being tested) Former-commit-id: b806b2a0f2e106347be7482443938709b3c8d976 --- .../update/StandardUpdateIntegrationTest.java | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/dependency-check-core/src/test/java/org/owasp/dependencycheck/data/update/StandardUpdateIntegrationTest.java b/dependency-check-core/src/test/java/org/owasp/dependencycheck/data/update/StandardUpdateIntegrationTest.java index 1870360ea..778fdecfe 100644 --- a/dependency-check-core/src/test/java/org/owasp/dependencycheck/data/update/StandardUpdateIntegrationTest.java +++ b/dependency-check-core/src/test/java/org/owasp/dependencycheck/data/update/StandardUpdateIntegrationTest.java @@ -73,21 +73,6 @@ public class StandardUpdateIntegrationTest { assertEquals(expResult, result); } - /** - * Test of deleteExistingData method, of class StandardUpdate. - */ - @Test - public void testDeleteExistingData() throws Exception { - StandardUpdate instance = getStandardUpdateTask(); - Exception result = null; - try { - instance.deleteExistingData(); - } catch (IOException ex) { - result = ex; - } - assertNull(result); - } - /** * Test of openDataStores method, of class StandardUpdate. */