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 final class EnumMapTest extends TransparentTestBase {
08:
09: private static final int NODE_COUNT = EnumMapTestApp.Fruit.values().length;
10:
11: public void doSetUp(final TransparentTestIface tt) throws Exception {
12: tt.getTransparentAppConfig().setClientCount(NODE_COUNT);
13: tt.initializeTestRunner();
14: }
15:
16: protected Class getApplicationClass() {
17: return EnumMapTestApp.class;
18: }
19:
20: }
|