@Test
 public void testCreateDataStoreFileParams() throws Exception {
   Map<String, Serializable> fileParams = new HashMap<String, Serializable>(1);
   fileParams.put("file", file);
   FileDataStore dataStore = csvDataStoreFactory.createDataStore(fileParams);
   assertNotNull("Could not create datastore from file params", dataStore);
 }
 @Test
 public void testGetTypeName() throws IOException {
   FileDataStore dataStore = csvDataStoreFactory.createDataStore(locationsResource);
   String[] typeNames = dataStore.getTypeNames();
   assertEquals("Invalid number of type names", 1, typeNames.length);
   assertEquals("Invalid type name", "locations", typeNames[0]);
 }
 @Test
 public void testCreateDataStoreURLParams() throws Exception {
   Map<String, Serializable> urlParams = new HashMap<String, Serializable>(1);
   urlParams.put("url", locationsResource);
   FileDataStore dataStore = csvDataStoreFactory.createDataStore(urlParams);
   assertNotNull("Could not create datastore from url params", dataStore);
 }
 @Test
 public void testCSVStrategyGuess() throws Exception {
   Map<String, Serializable> params = new HashMap<String, Serializable>();
   params.put("strategy", "guess");
   params.put("file", file);
   CSVDataStore datastore = (CSVDataStore) csvDataStoreFactory.createDataStore(params);
   CSVStrategy csvStrategy = datastore.getCSVStrategy();
   assertEquals("Unexpected strategy", CSVLatLonStrategy.class, csvStrategy.getClass());
 }
 @Test
 public void testCSVStrategyWKT() throws IOException {
   Map<String, Serializable> params = new HashMap<String, Serializable>();
   params.put("strategy", "wkt");
   params.put("wktField", "whatever");
   params.put("file", file);
   CSVDataStore datastore = (CSVDataStore) csvDataStoreFactory.createDataStore(params);
   CSVStrategy csvStrategy = datastore.getCSVStrategy();
   assertEquals("Unexpected strategy", CSVSpecifiedWKTStrategy.class, csvStrategy.getClass());
 }
 @Test
 public void testCSVStrategyWKTMissingWktField() throws IOException {
   Map<String, Serializable> params = new HashMap<String, Serializable>();
   params.put("strategy", "wkt");
   params.put("file", file);
   try {
     csvDataStoreFactory.createDataStore(params);
   } catch (IllegalArgumentException e) {
     return;
   }
   fail("Expected illegal argument exception for missing wktField");
 }
 @Test
 public void testCSVStrategySpecifiedBadParams() throws Exception {
   Map<String, Serializable> params = new HashMap<String, Serializable>();
   params.put("strategy", "specify");
   params.put("file", file);
   try {
     csvDataStoreFactory.createDataStore(params);
   } catch (IllegalArgumentException e) {
     return;
   }
   fail("Expected illegal argument exception for missing latField and lngField");
 }
 @Test
 public void testInvalidParamsCreation() throws Exception {
   Map<String, Serializable> params = Collections.emptyMap();
   try {
     csvDataStoreFactory.createDataStore(params);
   } catch (IllegalArgumentException e) {
     assertTrue(true);
     return;
   } catch (Exception e) {
   }
   fail("Did not throw illegal argument exception for null file");
 }
 @Test
 public void testCreateDataStoreURL() throws MalformedURLException, IOException {
   FileDataStore dataStore = csvDataStoreFactory.createDataStore(locationsResource);
   assertNotNull("Failure creating data store", dataStore);
 }