use of org.apache.geode.cache.lucene.internal.repository.serializer.Type2 in project geode by apache.
the class IndexRepositoryImplJUnitTest method createShouldUpdateStats.
@Test
public void createShouldUpdateStats() throws IOException {
repo.create("key1", new Type2("bar", 1, 2L, 3.0, 4.0f, "Grape Ape doughnut"));
verify(stats, times(1)).startUpdate();
verify(stats, times(1)).endUpdate(anyLong());
}
Aggregations