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