91011121314151617
public class StatisticsHandlerUnitTest extends TestCase { StatisticsHandler handler; public void setUp() { handler = new StatisticsHandler(); handler.setStatistics(true); }
261262263264265266267268
public MemcachedHandler(MemcachedClient client) { super(); this.client = client; this.listener = new AuthMemcachedConnectListener(); this.statisticsHandler = new StatisticsHandler(); }
316317318319320321322