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