Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@ public Object call() {

@Test
public void testPRTXPerformance() {
PRColocationDUnitTestHelper.defaultStringSize = 1024;
PRColocationDistributedTestHelper.defaultStringSize = 1024;

createPopulateAndVerifyCoLocatedPRs(1);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

package org.apache.geode.internal.cache.execute;

public class PRColocationDUnitTestHelper {
public class PRColocationDistributedTestHelper {

public static int defaultStringSize = 0;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

import org.apache.geode.DataSerializable;
import org.apache.geode.DataSerializer;
import org.apache.geode.internal.cache.execute.PRColocationDUnitTestHelper;
import org.apache.geode.internal.cache.execute.PRColocationDistributedTestHelper;

@SuppressWarnings("serial")
public class Customer implements DataSerializable {
String name;

Expand All @@ -33,7 +34,7 @@ public Customer() {

public Customer(String name, String address) {
this.name = name;
this.address = address + PRColocationDUnitTestHelper.getDefaultAddOnString();
this.address = address + PRColocationDistributedTestHelper.getDefaultAddOnString();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

import org.apache.geode.DataSerializable;
import org.apache.geode.DataSerializer;
import org.apache.geode.internal.cache.execute.PRColocationDUnitTestHelper;
import org.apache.geode.internal.cache.execute.PRColocationDistributedTestHelper;

@SuppressWarnings("serial")
public class Order implements DataSerializable {
private String orderName;

Expand All @@ -30,7 +31,7 @@ public Order() {
}

public Order(String orderName) {
this.orderName = orderName + PRColocationDUnitTestHelper.getDefaultAddOnString();
this.orderName = orderName + PRColocationDistributedTestHelper.getDefaultAddOnString();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@

import org.apache.geode.DataSerializable;
import org.apache.geode.DataSerializer;
import org.apache.geode.internal.cache.execute.PRColocationDUnitTestHelper;
import org.apache.geode.internal.cache.execute.PRColocationDistributedTestHelper;

@SuppressWarnings("serial")
public class Shipment implements DataSerializable {
private String shipmentName;

Expand All @@ -30,7 +31,7 @@ public Shipment() {
}

public Shipment(String shipmentName) {
this.shipmentName = shipmentName + PRColocationDUnitTestHelper.getDefaultAddOnString();
this.shipmentName = shipmentName + PRColocationDistributedTestHelper.getDefaultAddOnString();
}

@Override
Expand Down