01: /* Copyright (c) 2001 - 2007 TOPP - www.openplans.org. All rights reserved.
02: * This code is licensed under the GPL 2.0 license, availible at the root
03: * application directory.
04: */
05: package org.vfny.geoserver.jetty;
06:
07: import org.geoserver.test.GeoServerTestSupport;
08:
09: /**
10: * Don't do anything special, just gather up the same Spring context as the real
11: * Geoserver and make sure it can be loaded without issues
12: *
13: * @author Andrea Aime - TOPP
14: *
15: */
16: public class SpringContextTest extends GeoServerTestSupport {
17: public void testStartStop() throws Exception {
18: // Nothing to do, the base class will setup the spring context during
19: // startup
20: }
21: }
|