01: package com.tctest;
02:
03: public class BundleClassExportTest extends TransparentTestBase {
04: public static final int NODE_COUNT = 1;
05:
06: public void doSetUp(final TransparentTestIface tt) throws Exception {
07: tt.getTransparentAppConfig().setClientCount(NODE_COUNT);
08: tt.initializeTestRunner();
09: }
10:
11: protected Class getApplicationClass() {
12: return BundleClassExportTestApp.class;
13: }
14: }
|