Merge pull request #17002 from Johnny Lim

* gh-17002:
  Add a missing @Test in JavaBeanBinderTests

Closes gh-17002
pull/17068/head
Andy Wilkinson 6 years ago
commit 0b5bb6eb9d

@ -511,6 +511,7 @@ public class JavaBeanBinderTests {
assertThat(bean.getBooleans().get("b").getValue()).isEqualTo(true);
}
@Test
public void bindToClassWithOverloadedSetterShouldUseSetterThatMatchesField() {
// gh-16206
MockConfigurationPropertySource source = new MockConfigurationPropertySource();
@ -522,9 +523,8 @@ public class JavaBeanBinderTests {
}
@Test
public void beanProperiesPreferMatchingType() {
public void beanPropertiesPreferMatchingType() {
// gh-16206
ResolvableType type = ResolvableType.forClass(PropertyWithOverloadedSetter.class);
Bean<PropertyWithOverloadedSetter> bean = new Bean<PropertyWithOverloadedSetter>(
type, type.resolve()) {

Loading…
Cancel
Save