Polishing

Issue: SPR-14888
This commit is contained in:
Juergen Hoeller
2016-11-08 17:26:59 +01:00
parent 55afb59c7a
commit dc8cd4e4c0

View File

@@ -38,8 +38,8 @@ import java.util.TreeSet;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.springframework.beans.InvalidPropertyException;
import org.springframework.beans.MutablePropertyValues;
import org.springframework.beans.NotWritablePropertyException;
@@ -78,6 +78,7 @@ public class DataBinderTests {
@Rule
public ExpectedException expectedException = ExpectedException.none();
@Test
public void testBindingNoErrors() throws Exception {
TestBean rod = new TestBean();
@@ -1988,7 +1989,7 @@ public class DataBinderTests {
assertEquals("age", binder.getBindingResult().getFieldError("age").getField());
}
@Test // SPR-14888
@Test // SPR-14888
public void testSetAutoGrowCollectionLimit() {
BeanWithIntegerList tb = new BeanWithIntegerList();
DataBinder binder = new DataBinder(tb);
@@ -2002,9 +2003,8 @@ public class DataBinderTests {
assertEquals(Integer.valueOf(1), binder.getBindingResult().getFieldValue("integerList[256]"));
}
@Test // SPR-14888
@Test // SPR-14888
public void testSetAutoGrowCollectionLimitAfterInitialization() {
expectedException.expect(IllegalStateException.class);
expectedException.expectMessage("DataBinder is already initialized - call setAutoGrowCollectionLimit before other configuration methods");
@@ -2013,6 +2013,7 @@ public class DataBinderTests {
binder.setAutoGrowCollectionLimit(257);
}
@SuppressWarnings("unused")
private static class BeanWithIntegerList {