updated to support the new Settings implementation

Former-commit-id: 82c5da6e4b3d7d34e8da2db091a55835f8ce97dd
This commit is contained in:
Jeremy Long
2014-04-16 08:07:52 -04:00
parent 0c7998712e
commit 352505c54f

View File

@@ -17,38 +17,16 @@
*/
package org.owasp.dependencycheck.analyzer;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
import org.owasp.dependencycheck.dependency.Dependency;
/**
*
* @author Jeremy Long <jeremy.long@owasp.org>
*/
public class DependencyBundlingAnalyzerTest {
public DependencyBundlingAnalyzerTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public class DependencyBundlingAnalyzerTest extends BaseTest {
/**
* Test of getName method, of class DependencyBundlingAnalyzer.