MockRandomGenerator generator;
TPCCClient client;
TPCCConfig config = TPCCConfig.defaultConfig();
public void setUp() {
mockClient = new MockVoltClient();
generator = new MockRandomGenerator();
client = new TPCCClient(mockClient, generator, new Clock.Mock(),
ScaleParameters.makeDefault((int) WAREHOUSES), this.config);
mockClient.nextResult = new VoltTable[0];
mockClient.resetAfterCall = false;