01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tctest.restart.system;
06:
07: import com.tctest.TransparentTestIface;
08:
09: public class ClientTerminatingSynchronousCommitTest extends
10: ClientTerminatingTest {
11:
12: public ClientTerminatingSynchronousCommitTest() {
13: super ();
14: super .setSynchronousWrite();
15: }
16:
17: public void doSetup(TransparentTestIface t) throws Exception {
18: t.getTransparentAppConfig().setAttribute(
19: ClientTerminatingTestApp.FORCE_KILL, "true");
20: }
21:
22: }
|