updated to support the new Settings implementation

Former-commit-id: 918bd36285d2b7339c69e3c3f64b327ec28d38ea
This commit is contained in:
Jeremy Long
2014-04-16 08:07:32 -04:00
parent b9a20e7ac5
commit 0c7998712e

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.