01: /*
02: * Geotools2 - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-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;
09: * version 2.1 of the License.
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: */
17: package org.geotools.data.shapefile;
18:
19: import java.io.IOException;
20: import org.geotools.data.shapefile.prj.PrjFileReader;
21: import org.geotools.TestData;
22:
23: /**
24: *
25: * @source $URL: http://svn.geotools.org/geotools/tags/2.4.1/modules/plugin/shapefile/src/test/java/org/geotools/data/shapefile/PrjFileTest.java $
26: * @version $Id: PrjFileTest.java 22666 2006-11-09 03:50:28Z jgarnett $
27: * @author Ian Schneider
28: * @author James Macgill
29: */
30: public class PrjFileTest extends TestCaseSupport {
31:
32: static final String TEST_FILE = "wkt/cntbnd01.prj";
33:
34: protected PrjFileReader prj = null;
35:
36: public PrjFileTest(String testName) throws IOException {
37: super (testName);
38: }
39:
40: protected void setUp() throws Exception {
41: prj = new PrjFileReader(TestData.openChannel(TEST_FILE));
42: }
43:
44: protected void tearDown() throws Exception {
45: prj.close();
46: super .tearDown();
47: }
48:
49: public void testIgnoreEmptyTestCaseWarning() {
50: }
51: }
|