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