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.zip.ZipEntry;
import java.util.zip.ZipInputStream;
import junit.framework.TestCase;
import org.junit.Before;
import org.owasp.dependencycheck.BaseTest;
import org.owasp.dependencycheck.utils.Settings;
/**
*
* @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;
@Override
protected void setUp() throws Exception {
super.setUp();
@Before
public void setUp() throws Exception {
ensureDBExists();
}