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.tcverify;
06:
07: /**
08: * A quick/shallow test that uses the DSOVerifier client program
09: */
10: public class DSOVerifierSynchronousWriteTest extends DSOVerifierTest {
11:
12: protected boolean isSynchronousWrite() {
13: return true;
14: }
15:
16: protected String getMainClass() {
17: return DSOVerifier.class.getName();
18: }
19: }
|