01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest;
05:
06: public class ClientMemoryReaperTest extends TransparentTestBase
07: implements TestConfigurator {
08:
09: private static final int NODE_COUNT = 2;
10: private static final int THREADS_COUNT = 2;
11:
12: public ClientMemoryReaperTest() {
13: // MNK-405
14: disableAllUntil("2007-11-20");
15: }
16:
17: protected Class getApplicationClass() {
18: return ClientMemoryReaperTestApp.class;
19: }
20:
21: public void doSetUp(TransparentTestIface t) throws Exception {
22: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
23: .setApplicationInstancePerClientCount(THREADS_COUNT);
24: t.initializeTestRunner();
25: }
26:
27: }
|