updated to support the new Settings implementation

Former-commit-id: 68cba2d619cd31a7352d54cd3a3ff6b5c482ebd9
This commit is contained in:
Jeremy Long
2014-04-16 07:59:13 -04:00
parent 039bfd372d
commit b4aeab3501

View File

@@ -19,13 +19,10 @@ package org.owasp.dependencycheck.data.update;
import java.net.MalformedURLException; import java.net.MalformedURLException;
import java.util.Calendar; import java.util.Calendar;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNotNull;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
import org.owasp.dependencycheck.data.update.exception.UpdateException; import org.owasp.dependencycheck.data.update.exception.UpdateException;
import org.owasp.dependencycheck.utils.DownloadFailedException; import org.owasp.dependencycheck.utils.DownloadFailedException;
@@ -33,26 +30,7 @@ import org.owasp.dependencycheck.utils.DownloadFailedException;
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public class StandardUpdateIntegrationTest { public class StandardUpdateIntegrationTest extends BaseTest {
public StandardUpdateIntegrationTest() {
}
@BeforeClass
public static void setUpClass() {
}
@AfterClass
public static void tearDownClass() {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public StandardUpdate getStandardUpdateTask() throws MalformedURLException, DownloadFailedException, UpdateException { public StandardUpdate getStandardUpdateTask() throws MalformedURLException, DownloadFailedException, UpdateException {
StandardUpdate instance = new StandardUpdate(); StandardUpdate instance = new StandardUpdate();