Package com.googlecode.objectify.impl

Examples of com.googlecode.objectify.impl.LoadEngine


* @author Jeff Schnitzer <jeff@infohazard.org>
*/
public class FakeLoadContext extends LoadContext
{
  private static LoadEngine mockLoadEngine() {
    LoadEngine mock = mock(LoadEngine.class);
    when(mock.shouldLoad(Matchers.<LoadConditions>any())).thenReturn(false);
    return mock;
  }
View Full Code Here

TOP

Related Classes of com.googlecode.objectify.impl.LoadEngine

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.