Examples of markSynced()


Examples of com.findwise.hydra.local.LocalDocument.markSynced()

  @Test
  public void testNullTransfer() throws Exception {
    LocalDocument ld = new LocalDocument();
    ld.putContentField("field", "value");
    ld.markSynced();
    ld.removeContentField("field");
   
    MongoDocument md = new MongoDocument(ld.toJson());
   
    assertEquals(1, md.getTouchedContent().size());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.