updated to support the new Settings implementation

Former-commit-id: 95a0da4c7f9ec9f506477bdd755b5660de05bd2f
This commit is contained in:
Jeremy Long
2014-04-16 08:03:15 -04:00
parent c85514a17a
commit 8609b98b1c

View File

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