protected void setUp() throws Exception {
// the data source we'll use for the tests
dataStore = new PropertyDataStore(new File("./src/test/java/org/geoserver/wfs/response"));
// the output format (and let's add a few output formats to play with
ogr = new Ogr2OgrOutputFormat(new GeoServerImpl());
ogr.addFormat(new OgrFormat("KML", "OGR-KML", ".kml", true, "application/vnd.google-earth.kml"));
ogr.addFormat(new OgrFormat("KML", "OGR-KML-ZIP", ".kml", false, "application/vnd.google-earth.kml"));
ogr.addFormat(new OgrFormat("CSV", "OGR-CSV", ".csv", true, "text/csv"));
ogr.addFormat(new OgrFormat("SHP", "OGR-SHP", ".shp", false, null));
ogr.addFormat(new OgrFormat("MapInfo File", "OGR-MIF", ".mif", false, null, "-dsco", "FORMAT=MIF"));