KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > EnumMapTest


1 /*
2  * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
3  * notice. All rights reserved.
4  */

5 package com.tctest;
6
7 public final class EnumMapTest extends TransparentTestBase {
8
9   private static final int NODE_COUNT = EnumMapTestApp.Fruit.values().length;
10
11   public void doSetUp(final TransparentTestIface tt) throws Exception JavaDoc {
12     tt.getTransparentAppConfig().setClientCount(NODE_COUNT);
13     tt.initializeTestRunner();
14   }
15
16   protected Class JavaDoc getApplicationClass() {
17     return EnumMapTestApp.class;
18   }
19
20 }
21
Popular Tags