blob: 48968b58d9563bdab7a11006711e582f754d350c [file] [log] [blame]
package com.gemstone.gemfire.internal.cache.tier.sockets;
import org.junit.experimental.categories.Category;
import com.gemstone.gemfire.test.junit.categories.IntegrationTest;
/**
* Just like its parent but enables the server thread pool (aka selector).
*
* @author darrel
*
*/
@Category(IntegrationTest.class)
public class ClientHealthMonitorSelectorJUnitTest extends ClientHealthMonitorJUnitTest
{
protected int getMaxThreads() {
return 2;
}
}