@Test
public void t15_3ClientsChangeSubscription10000() throws Exception {
int numberOfClients = 10;
ProcessCtx[] clientCtxs = new ProcessCtx[numberOfClients];
ProcessCtx clientCtx3 = ctrl.startPublishClient(TestConstants.log4jClnProperties, "client0", TestConstants.HOST,
TestConstants.PORT_SC1_TCP, ConnectionType.NETTY_TCP, 10, 0, TestConstants.pubServerName1, 50,
"f_subscribeReceive10000Unsubscribe");
clientCtxs[0] = clientCtx3;
for (int i = 1; i < clientCtxs.length; i++) {
ProcessCtx clientCtx = ctrl.startPublishClient(TestConstants.log4jClnProperties, "client" + i, TestConstants.HOST,
TestConstants.PORT_SC1_TCP, ConnectionType.NETTY_TCP, 10, 0, TestConstants.pubServerName1, 50,
"f_10000ChangeSubscription");
clientCtxs[i] = clientCtx;
}
APIMultipleClientChangeSubscriptionCasc1Test.ctrl.waitForClientTermination(clientCtxs);