mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-01-15 00:03:43 +01:00
updated to support the new Settings implementation
Former-commit-id: ceae727c56f4f982692b6d48d9466756abc400e8
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user