@Test
  public void testOnEvent_update_ed_includeDocFields_noChange() {
    Event event = new DocumentUpdatedEvent();
    listener.includeDocFields = true;

    expect(remoteObsManContextMock.isRemoteState()).andReturn(false).once();
    expect(docMock.getXObject(eq(classRef))).andReturn(new BaseObject()).once();
    expect(origDocMock.getXObject(eq(classRef))).andReturn(new BaseObject()).once();
    expect(docMock.getTitle()).andReturn("").once();
    expect(origDocMock.getTitle()).andReturn("").once();
    expect(docMock.getContent()).andReturn("").once();
    expect(origDocMock.getContent()).andReturn("").once();

    replayDefault();
    listener.onEvent(event, docMock, context);
    verifyDefault();
  }