01: /*
02: * All content copyright (c) 2003-2006 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 AnnotationTest extends TransparentTestBase {
08:
09: public void doSetUp(TransparentTestIface t) throws Exception {
10: t.getTransparentAppConfig().setClientCount(3).setIntensity(1);
11: t.initializeTestRunner();
12: }
13:
14: protected Class getApplicationClass() {
15: return AnnotationTestApp.class;
16: }
17:
18: protected boolean canRunCrash() {
19: return false;
20: }
21:
22: }
|