@Before
public void setup() throws IOException {
String base = "./src/test/resources/org/geotools/data/aggregate/";
store1 = new PropertyDataStore(new File(base + "store1"));
store1.setNamespaceURI(null);
repository.register("store1", store1);
store2 = new PropertyDataStore(new File(base + "store2"));
store2.setNamespaceURI(null);
repository.register("store2", store2);
store3 = new PropertyDataStore(new File(base + "store3"));
store3.setNamespaceURI(null);
repository.register(new NameImpl("gt", "store3"), store3);
store4 = new PropertyDataStore(new File(base + "store4"));
store4.setNamespaceURI(null);
repository.register("store4", store4);
}