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 *without* DSO -- The point of this test is to make sure the
11: * framework (and the container itself) can be started/stopped reliably even if DSO isn't in the mix
12: */
13: public class AppServerShutdownTest extends AppServerShutdownTestBase {
14:
15: public AppServerShutdownTest() {
16: super (true);
17: }
18:
19: public static Test suite() {
20: return new AppServerShutdownTestSetup(
21: AppServerShutdownTest.class, true);
22: }
23:
24: }
|