updated to support the new Settings implementation

Former-commit-id: 572697ad9f84f341e1ac5a4f4e6036df0ed02f3a
This commit is contained in:
Jeremy Long
2014-04-16 08:07:52 -04:00
parent 2af09fb49d
commit 12162e2aae

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.