updated to use BaseTest to initialize the Settings correctly

Former-commit-id: 473e0db1cc94efe745c1d4664d2c204731e1b931
This commit is contained in:
Jeremy Long
2014-04-19 08:08:53 -04:00
parent a6fd0434de
commit 0933d96954

View File

@@ -19,34 +19,15 @@ package org.owasp.dependencycheck.utils;
import java.io.File;
import java.net.URL;
import org.junit.After;
import org.junit.AfterClass;
import static org.junit.Assert.assertTrue;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.owasp.dependencycheck.BaseTest;
/**
*
* @author Jeremy Long <jeremy.long@owasp.org>
*/
public class DownloaderIntegrationTest {
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before
public void setUp() {
}
@After
public void tearDown() {
}
public class DownloaderIntegrationTest extends BaseTest {
/**
* Test of fetchFile method, of class Downloader.