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