Package com.gemstone.gemfire.cache

Examples of com.gemstone.gemfire.cache.PartitionResolver


*/
@SuppressWarnings("unused")
public class PartitionAttributesFactoryBeanTest {

  protected PartitionResolver createMockPartitionResolver(final String name) {
    PartitionResolver partitionResolver = mock(PartitionResolver.class);

    when(partitionResolver.getName()).thenReturn(name);

    return partitionResolver;
  }
View Full Code Here

TOP

Related Classes of com.gemstone.gemfire.cache.PartitionResolver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.