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 TransparencyTest extends TransparentTestBase implements
07: TestConfigurator {
08:
09: private int clientCount = 4;
10:
11: protected Class getApplicationClass() {
12: return TransparencyTestApp.class;
13: }
14:
15: public void doSetUp(TransparentTestIface t) throws Exception {
16: t.getTransparentAppConfig().setClientCount(clientCount)
17: .setApplicationInstancePerClientCount(1)
18: .setIntensity(1);
19: t.initializeTestRunner();
20: }
21:
22: }
|