KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > AutoLockVectorTest


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;
5
6 public class AutoLockVectorTest extends TransparentTestBase {
7   private static final int NODE_COUNT = 3;
8
9   public AutoLockVectorTest() {
10     disableAllUntil("2023-04-01");
11   }
12
13   protected void setUp() throws Exception JavaDoc {
14     super.setUp();
15     getTransparentAppConfig().setClientCount(NODE_COUNT).setIntensity(1);
16     initializeTestRunner();
17   }
18
19   protected Class JavaDoc getApplicationClass() {
20     return AutoLockVectorTestApp.class;
21   }
22
23 }
24
Popular Tags