|
|
|
@ -6,7 +6,7 @@ import java.util.ArrayList;
|
|
|
|
|
import org.junit.Assert;
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
|
|
import com.zaxxer.hikari.performance.StubStatement;
|
|
|
|
|
import com.zaxxer.hikari.mocks.StubStatement;
|
|
|
|
|
import com.zaxxer.hikari.util.FastStatementList;
|
|
|
|
|
|
|
|
|
|
public class TestFastStatementList
|
|
|
|
@ -19,7 +19,7 @@ public class TestFastStatementList
|
|
|
|
|
FastStatementList list = new FastStatementList();
|
|
|
|
|
for (int i = 0; i < 100; i++)
|
|
|
|
|
{
|
|
|
|
|
StubStatement statement = new StubStatement();
|
|
|
|
|
StubStatement statement = new StubStatement(null);
|
|
|
|
|
list.add(statement);
|
|
|
|
|
verifyList.add(statement);
|
|
|
|
|
}
|
|
|
|
|