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.server.appserver.unit;
06:
07: import junit.framework.Test;
08:
09: /**
10: * Test to make sure the app server shutdown normally with DSO
11: */
12: public class AppServerSansDsoShutdownTest extends
13: AppServerShutdownTestBase {
14:
15: public AppServerSansDsoShutdownTest() {
16: super (false);
17: }
18:
19: public static Test suite() {
20: return new AppServerShutdownTestSetup(
21: AppServerSansDsoShutdownTest.class, false);
22: }
23:
24: }
|