summaryrefslogtreecommitdiffstats
path: root/pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java')
-rw-r--r--pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java b/pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java
index 699a924d0..d3177f62c 100644
--- a/pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java
+++ b/pki/base/common/test/com/netscape/cmscore/dbs/CertRecordListTest.java
@@ -22,6 +22,7 @@ import junit.framework.TestSuite;
import com.netscape.certsrv.base.EBaseException;
import com.netscape.certsrv.dbs.IElementProcessor;
+import com.netscape.certsrv.dbs.certdb.ICertRecord;
import com.netscape.cmscore.test.CMSBaseTestCase;
public class CertRecordListTest extends CMSBaseTestCase {
@@ -41,7 +42,7 @@ public class CertRecordListTest extends CMSBaseTestCase {
}
public void testProcessCertRecordsUsesSize() throws EBaseException {
- DBVirtualListStub dbList = new DBVirtualListStub();
+ DBVirtualListStub<ICertRecord> dbList = new DBVirtualListStub<ICertRecord>();
dbList.size = 5;
CertRecordList certList = new CertRecordList(dbList);
@@ -57,12 +58,12 @@ public class CertRecordListTest extends CMSBaseTestCase {
assertEquals(7, dbList.lastIndexGetElementAtCalledWith);
}
- public class DBVirtualListStub extends DBVirtualListDefaultStub {
+ public class DBVirtualListStub<T> extends DBVirtualListDefaultStub<T> {
public int size = 0;
public int getElementAtCallCount = 0;
public int lastIndexGetElementAtCalledWith = 0;
- public Object getElementAt(int index) {
+ public T getElementAt(int index) {
getElementAtCallCount++;
lastIndexGetElementAtCalledWith = index;