updated to support the new Settings implementation

Former-commit-id: bc891a90f8e0d234fbefcd19bc559bf828af5636
This commit is contained in:
Jeremy Long
2014-04-16 08:01:45 -04:00
parent 7bba66737f
commit 886b21af68

View File

@@ -26,20 +26,20 @@ import java.util.logging.Level;
import java.util.logging.Logger; import java.util.logging.Logger;
import java.util.zip.ZipEntry; import java.util.zip.ZipEntry;
import java.util.zip.ZipInputStream; import java.util.zip.ZipInputStream;
import junit.framework.TestCase; import org.junit.Before;
import org.owasp.dependencycheck.BaseTest;
import org.owasp.dependencycheck.utils.Settings; import org.owasp.dependencycheck.utils.Settings;
/** /**
* *
* @author Jeremy Long <jeremy.long@owasp.org> * @author Jeremy Long <jeremy.long@owasp.org>
*/ */
public abstract class BaseDBTestCase extends TestCase { public abstract class BaseDBTestCase extends BaseTest {
protected final static int BUFFER_SIZE = 2048; protected final static int BUFFER_SIZE = 2048;
@Override @Before
protected void setUp() throws Exception { public void setUp() throws Exception {
super.setUp();
ensureDBExists(); ensureDBExists();
} }