}
void setUpMock() throws Exception {
DeleteDbFiles.execute("target", "acme", true);
H2DataStoreFactory fac = new H2DataStoreFactory();
HashMap params = new HashMap();
params.put(H2DataStoreFactory.DATABASE.key, "target/acme");
params.put(H2DataStoreFactory.DBTYPE.key, "h2");
DataStore ds = fac.createDataStore(params);
SimpleFeatureTypeBuilder tb = new SimpleFeatureTypeBuilder();
tb.setName("widgets");
tb.add("type", String.class);
tb.add("price", Double.class);