From 121972ffd947efbffff886ca1995980759a62445 Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Fri, 22 Dec 2017 06:10:22 -0500 Subject: [PATCH] codacy cleanup --- .../analyzer/CPEAnalyzerTest.java | 64 ------------------- 1 file changed, 64 deletions(-) diff --git a/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/CPEAnalyzerTest.java b/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/CPEAnalyzerTest.java index e4f3492e1..d130f2f67 100644 --- a/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/CPEAnalyzerTest.java +++ b/dependency-check-core/src/test/java/org/owasp/dependencycheck/analyzer/CPEAnalyzerTest.java @@ -19,17 +19,9 @@ import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; import org.junit.Test; import static org.junit.Assert.*; -import org.owasp.dependencycheck.Engine; -import org.owasp.dependencycheck.data.cpe.IndexEntry; -import org.owasp.dependencycheck.data.nvdcve.CveDB; import org.owasp.dependencycheck.dependency.Confidence; -import org.owasp.dependencycheck.dependency.Dependency; import org.owasp.dependencycheck.dependency.Evidence; import org.owasp.dependencycheck.utils.Settings; @@ -159,60 +151,4 @@ public class CPEAnalyzerTest { result = instance.buildSearch(vendor, product, vendorWeighting, productWeightings); assertEquals(expResult, result); } - - /** - * Test of prepareAnalyzer method, of class CPEAnalyzer. - */ - @Test - public void testPrepareAnalyzer() throws Exception { - //Part of the integration tests. - } - - /** - * Test of open method, of class CPEAnalyzer. - */ - @Test - public void testOpen() throws Exception { - //Part of the integration tests. - } - - /** - * Test of closeAnalyzer method, of class CPEAnalyzer. - */ - @Test - public void testCloseAnalyzer() { - //Part of the integration tests. - } - - /** - * Test of determineCPE method, of class CPEAnalyzer. - */ - @Test - public void testDetermineCPE() throws Exception { - //Part of the integration tests. - } - - /** - * Test of searchCPE method, of class CPEAnalyzer. - */ - @Test - public void testSearchCPE() { - //Part of the integration tests. - } - - /** - * Test of analyzeDependency method, of class CPEAnalyzer. - */ - @Test - public void testAnalyzeDependency() throws Exception { - //Part of the integration tests. - } - - /** - * Test of determineIdentifiers method, of class CPEAnalyzer. - */ - @Test - public void testDetermineIdentifiers() throws Exception { - //Part of the integration tests. - } }