PersonRepository repository;
@Before
public void setUp() {
dave = new Person(1L, "Dave", "Matthews");
carter = new Person(2L, "Carter", "Beauford");
boyd = new Person(3L, "Boyd", "Tinsley");
stefan = new Person(4L, "Stefan", "Lessard");
leroi = new Person(5L, "Leroi", "Moore");
jeff = new Person(6L, "Jeff", "Coffin");
oliverAugust = new Person(7L, "Oliver August", "Matthews");
GemfireMappingContext context = new GemfireMappingContext();
Regions regions = new Regions(this.regions, context);
GemfireTemplate template = new GemfireTemplate(regions.getRegion(Person.class));