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 PrimitiveArrayTest extends TransparentTestBase implements
07: TestConfigurator {
08:
09: private static final int NODE_COUNT = 16; // MUST BE 16 (8 eight primitive
10:
11: // types, and 8 wrappers)
12:
13: public void doSetUp(TransparentTestIface t) throws Exception {
14: t.getTransparentAppConfig().setClientCount(NODE_COUNT)
15: .setIntensity(1);
16: t.initializeTestRunner();
17: }
18:
19: protected Class getApplicationClass() {
20: return PrimitiveArrayTestApp.class;
21: }
22:
23: protected boolean canRunCrash() {
24: return true;
25: }
26:
27: }
|