updated to support the new Settings implementation

Former-commit-id: 58ea4b5d184999aa7c2f67e00374a7c52fef639f
This commit is contained in:
Jeremy Long
2014-04-16 08:07:32 -04:00
parent c58589026c
commit 2af09fb49d

View File

@@ -18,38 +18,16 @@
package org.owasp.dependencycheck.analyzer;
import java.util.Set;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
/**
*
* @author Jeremy Long <jeremy.long@owasp.org>
*/
public class AbstractFileTypeAnalyzerTest {
public AbstractFileTypeAnalyzerTest() {
}
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public class AbstractFileTypeAnalyzerTest extends BaseTest {
/**
* Test of newHashSet method, of class AbstractAnalyzer.