@Test
 public void shouldRegisterCorrectDateTimeEditor() {
   WebDataBinder binder = spy(new WebDataBinder(null));
   underTest.initBinder(binder);
   verify(binder).registerCustomEditor(eq(DateTime.class), any(DateTimeEditor.class));
 }