01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2004-2006, Geotools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or (at your option) any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.data.wfs;
17:
18: import java.net.MalformedURLException;
19: import java.net.URL;
20: import java.util.NoSuchElementException;
21:
22: import junit.framework.TestCase;
23:
24: /**
25: * summary sentence.
26: * <p>
27: * Paragraph ...
28: * </p><p>
29: * Responsibilities:
30: * <ul>
31: * <li>
32: * <li>
33: * </ul>
34: * </p><p>
35: * Example:<pre><code>
36: * GeoServer x = new GeoServer( ... );
37: * TODO code example
38: * </code></pre>
39: * </p>
40: * @author dzwiers
41: * @since 0.6.0
42: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/plugin/wfs/src/test/java/org/geotools/data/wfs/ESRITest.java $
43: */
44: public class ESRITest extends TestCase {
45:
46: private URL url = null;
47:
48: public ESRITest() throws MalformedURLException {
49: // Too slow
50: url = new URL(
51: "http://dev.geographynetwork.ca/ogcwfs/servlet/com.esri.ogc.wfs.WFSServlet?Request=GetCapabilities");
52: }
53:
54: public void testFeatureType() throws NoSuchElementException {
55: // WFSDataStoreReadTest.doFeatureType(url,true,false,2);
56: }
57:
58: public void testFeatureReader() throws NoSuchElementException {
59: // WFSDataStoreReadTest.doFeatureReader(url,true,false,2);
60: }
61:
62: public void testFeatureReaderWithFilter()
63: throws NoSuchElementException {
64: // WFSDataStoreReadTest.doFeatureReaderWithFilter(url,true,false,2);
65: }
66: }
|