KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tctest > restart > system > SynchronousCommitClientTerminatingTest


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

5 package com.tctest.restart.system;
6
7 import com.tctest.TransparentTestIface;
8
9 public class SynchronousCommitClientTerminatingTest extends ClientTerminatingTest {
10
11   public SynchronousCommitClientTerminatingTest() {
12     super();
13     super.setSynchronousWrite();
14   }
15
16   public void doSetup(TransparentTestIface t) throws Exception JavaDoc {
17     t.getTransparentAppConfig().setAttribute(ClientTerminatingTestApp.FORCE_KILL, "true");
18   }
19
20 }
21
Popular Tags