Package com.findwise.hydra

Examples of com.findwise.hydra.DatabaseDocument


  @SuppressWarnings({ "unchecked", "rawtypes" })
  @Test
  public void testSave() throws Exception {
    when(writer.insert(any(DatabaseDocument.class))).thenReturn(false);
   
    DatabaseDocument dbdoc = mock(DatabaseDocument.class);
    when(dbc.convert(any(LocalDocument.class))).thenReturn(dbdoc);
   
    LocalDocumentID id = new LocalDocumentID(1);
   
    when(dbdoc.getID()).thenReturn(id);
    when(reader.getDocumentById(id)).thenReturn(dbdoc);
   
    RemotePipeline rp = new HttpRemotePipeline("localhost", server.getPort(), "stage");
    LocalDocument ld = new LocalDocument();
   
View Full Code Here

TOP

Related Classes of com.findwise.hydra.DatabaseDocument

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.