clientFactory = new MockDocumentHandleFactory();
}
public void testCheckpointAndChange_internal() throws Exception {
DiffingConnectorCheckpoint fccp = DiffingConnectorCheckpoint.newFirst();
DeleteDocumentHandle ddh = new DeleteDocumentHandle("abc");
Change c = new Change(Change.FactoryType.INTERNAL, ddh, MCP);
CheckpointAndChange checkpointAndChange = new CheckpointAndChange(fccp, c);
String stringForm = checkpointAndChange.getJson().toString();
JSONObject json = new JSONObject(stringForm);
CheckpointAndChange copy = new CheckpointAndChange(json, internalFactory,