📄 prjfiletest.java
字号:
/*
* Geotools2 - OpenSource mapping toolkit
* http://geotools.org
* (C) 2002-2006, Geotools Project Managment Committee (PMC)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
*/
package org.geotools.data.shapefile;
import java.io.IOException;
import org.geotools.data.shapefile.prj.PrjFileReader;
/**
*
* @source $URL:
* http://svn.geotools.org/geotools/trunk/gt/modules/plugin/shapefile/src/test/java/org/geotools/data/shapefile/PrjFileTest.java $
* @version $Id: PrjFileTest.java 28748 2008-01-14 21:52:51Z jeichar $
* @author Ian Schneider
* @author James Macgill
*/
public class PrjFileTest extends TestCaseSupport {
static final String TEST_FILE = "wkt/cntbnd01.prj";
protected PrjFileReader prj = null;
public PrjFileTest(String testName) throws IOException {
super(testName);
}
protected void setUp() throws Exception {
// prj = new PrjFileReader(new ShpFiles(TEST_FILE));
}
protected void tearDown() throws Exception {
// prj.close();
super.tearDown();
}
public void testIgnoreEmptyTestCaseWarning() {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -