Package com.cetsoft.imcache.cache.search.index

Examples of com.cetsoft.imcache.cache.search.index.CacheIndexBase


   * Setup.
   */
  @Before
  public void setup() {
    MockitoAnnotations.initMocks(this);
    indexBase = spy(new CacheIndexBase() {
      public void remove(Object indexedKey, Object key) {}
      public void put(Object indexedKey, Object key) {}
    });
  }
View Full Code Here

TOP

Related Classes of com.cetsoft.imcache.cache.search.index.CacheIndexBase

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.