* @see DATAREST-130
*/
@Test
public void mergeNewValue() {
Person incoming = new Person("Bilbo", "Baggins");
Person existingDomainObject = new Person("Frodo", "Baggins");
merger.merge(incoming, existingDomainObject, APPLY_NULLS);
assertThat(existingDomainObject.getFirstName(), is(incoming.getFirstName()));
assertThat(existingDomainObject.getLastName(), is(incoming.getLastName()));
}