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.server.appserver.load;
06:
07: import com.tc.test.server.appserver.deployment.ServerTestSetup;
08:
09: import junit.framework.Test;
10:
11: public class NonStickyMultiNodeLoadTest extends MultiNodeLoadTest {
12:
13: public static Test suite() {
14: return new ServerTestSetup(NonStickyMultiNodeLoadTest.class);
15: }
16:
17: public void testFourNodeLoad() throws Throwable {
18: runFourNodeLoad(false);
19: }
20: }
|