updated to support the new Settings implementation

Former-commit-id: 9cbc15ce470881f316a8ede89b94c7122c1381c1
This commit is contained in:
Jeremy Long
2014-04-16 08:03:55 -04:00
parent 420da8f476
commit 260b2c3532

View File

@@ -20,10 +20,8 @@ package org.owasp.dependencycheck.analyzer;
import java.io.File;
import java.util.HashSet;
import java.util.Set;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import org.owasp.dependencycheck.Engine;
import org.owasp.dependencycheck.data.cpe.AbstractDatabaseTestCase;
@@ -36,29 +34,6 @@ import org.owasp.dependencycheck.utils.Settings;
*/
public class ArchiveAnalyzerTest extends AbstractDatabaseTestCase {
public ArchiveAnalyzerTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
@Override
public void setUp() throws Exception {
super.setUp();
}
@After
@Override
public void tearDown() throws Exception {
super.tearDown();
}
/**
* Test of getSupportedExtensions method, of class ArchiveAnalyzer.
*/