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.transparency;
05:
06: import com.tctest.TransparentTestBase;
07: import com.tctest.TransparentTestIface;
08:
09: public class InnerClassInstrumentationTest extends TransparentTestBase {
10:
11: protected Class getApplicationClass() {
12: return InnerClassInstrumentationTestApp.class;
13: }
14:
15: public void doSetUp(TransparentTestIface t) throws Exception {
16: t.getTransparentAppConfig().setClientCount(1).setIntensity(1);
17: t.initializeTestRunner();
18: }
19:
20: }
|