updated to support the new Settings implementation

Former-commit-id: 10625b4a050b79608d454677ff7fba04f1f735a0
This commit is contained in:
Jeremy Long
2014-04-16 08:06:52 -04:00
parent 9620956727
commit 7ab89b900c

View File

@@ -18,37 +18,15 @@
package org.owasp.dependencycheck.analyzer;
import java.util.Iterator;
import org.junit.After;
import org.junit.AfterClass;
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 AnalyzerServiceTest {
public AnalyzerServiceTest() {
}
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public class AnalyzerServiceTest extends BaseTest {
/**
* Test of getAnalyzers method, of class AnalyzerService.