updated to support the new Settings implementation

Former-commit-id: b2b4137934983f3688f115f31ced54004d33d2e9
This commit is contained in:
Jeremy Long
2014-04-16 08:03:15 -04:00
parent 6cd4bf337e
commit c2a39d3296

View File

@@ -22,13 +22,14 @@ import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
public class NuspecAnalyzerTest {
public class NuspecAnalyzerTest extends BaseTest {
private NuspecAnalyzer instance;
@Before
public void setUp() {
public void setUp() throws Exception {
instance = new NuspecAnalyzer();
instance.setEnabled(true);
}