KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > transparency > ClassNotPortableTest


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

4 package com.tctest.transparency;
5
6 import com.tctest.TestConfigurator;
7 import com.tctest.TransparentTestBase;
8 import com.tctest.TransparentTestIface;
9
10
11 public class ClassNotPortableTest extends TransparentTestBase implements TestConfigurator {
12
13   protected Class JavaDoc getApplicationClass() {
14     return ClassNotPortableTestApp.class;
15   }
16
17   public void doSetUp(TransparentTestIface t) throws Exception JavaDoc {
18     t.getTransparentAppConfig().setClientCount(1).setIntensity(1);
19     t.initializeTestRunner();
20   }
21   
22 }
23
Popular Tags