updated to support the new Settings implementation

Former-commit-id: dd98df72654badebf3d4b7fa24da718ff588339d
This commit is contained in:
Jeremy Long
2014-04-16 07:58:50 -04:00
parent 144f913aa9
commit e7749c161d

View File

@@ -20,40 +20,18 @@ package org.owasp.dependencycheck.data.update;
import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
import org.owasp.dependencycheck.utils.DownloadFailedException;
/**
*
* @author Jeremy Long <jeremy.long@owasp.org>
*/
public class UpdateableNvdCveTest {
public UpdateableNvdCveTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public class UpdateableNvdCveTest extends BaseTest {
/**
* Test of isUpdateNeeded method, of class UpdateableNvdCve.