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.wms.responses;
06:
07: import junit.framework.TestCase;
08:
09: /**
10: * DOCUMENT ME!
11: *
12: * @author gabriel
13: */
14: public class GetMapResponseTest extends TestCase {
15: /** DOCUMENT ME! */
16: private GetMapResponse getMapResponse;
17:
18: /**
19: * Constructor for GetMapResponseTest.
20: *
21: * @param arg0
22: */
23: public GetMapResponseTest(String arg0) {
24: super (arg0);
25: }
26:
27: /**
28: * DOCUMENT ME!
29: *
30: * @param args DOCUMENT ME!
31: */
32: public static void main(String[] args) {
33: junit.textui.TestRunner.run(GetMapResponseTest.class);
34: }
35:
36: /*
37: * @see TestCase#setUp()
38: */
39: protected void setUp() throws Exception {
40: super .setUp();
41: this .getMapResponse = new GetMapResponse(null, null);
42: }
43:
44: /*
45: * @see TestCase#tearDown()
46: */
47: protected void tearDown() throws Exception {
48: this .getMapResponse = null;
49: super .tearDown();
50: }
51:
52: /**
53: * DOCUMENT ME!
54: */
55: public void testGetContentType() {
56: //TODO Implement getContentType().
57: }
58:
59: /**
60: * DOCUMENT ME!
61: */
62: public void testGetContentEncoding() {
63: //TODO Implement getContentEncoding().
64: }
65:
66: /**
67: * DOCUMENT ME!
68: */
69: public void testAbort() {
70: //TODO Implement abort().
71: }
72:
73: /**
74: * DOCUMENT ME!
75: */
76: public void testWriteTo() {
77: //TODO Implement writeTo().
78: }
79:
80: /**
81: * DOCUMENT ME!
82: */
83: public void testGetMapFormats() {
84: //TODO Implement getMapFormats().
85: }
86: }
|