01: package org.geotools.data.gml;
02:
03: import org.geotools.gml3.ApplicationSchemaConfiguration;
04:
05: import junit.framework.TestCase;
06:
07: public class GMLDataStoreTestSupport extends TestCase {
08:
09: GMLDataStore dataStore;
10:
11: protected void setUp() throws Exception {
12: String location = getClass().getResource("test.xml").toString();
13: String schemaLocation = getClass().getResource("test.xsd")
14: .toString();
15:
16: dataStore = new GMLDataStore(location,
17: new ApplicationSchemaConfiguration(
18: "http://www.geotools.org/test", schemaLocation));
19: }
20:
21: }
|