polish
This commit is contained in:
parent
0c1c5fffba
commit
80760ed7a4
|
|
@ -112,7 +112,10 @@ public class GenericBinderTests {
|
||||||
@Test
|
@Test
|
||||||
public void bindSingleValuePropertyFormatterParseException() {
|
public void bindSingleValuePropertyFormatterParseException() {
|
||||||
binder.addBinding("date").formatWith(new DateFormatter());
|
binder.addBinding("date").formatWith(new DateFormatter());
|
||||||
binder.bind(Collections.singletonMap("date", "bogus"));
|
BindingResults results = binder.bind(Collections.singletonMap("date", "bogus"));
|
||||||
|
assertEquals(1, results.size());
|
||||||
|
assertTrue(results.get(0).isFailure());
|
||||||
|
assertEquals("invalidFormat", results.get(0).getAlert().getCode());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue