Browse Source

Polish

See gh-15853
pull/15858/head
Kedar Joshi 7 years ago committed by Stephane Nicoll
parent
commit
b43718c360
  1. 12
      spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/PropertyMapperTests.java

12
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/context/properties/PropertyMapperTests.java

@ -50,7 +50,7 @@ public class PropertyMapperTests { @@ -50,7 +50,7 @@ public class PropertyMapperTests {
@Test
public void fromValueAsIntShouldAdaptValue() {
Integer result = this.map.from("123").asInt(Long::valueOf)
.toInstance(Integer::new);
.toInstance(Integer::valueOf);
assertThat(result).isEqualTo(123);
}
@ -84,7 +84,7 @@ public class PropertyMapperTests { @@ -84,7 +84,7 @@ public class PropertyMapperTests {
@Test
public void asIntShouldAdaptSupplier() {
Integer result = this.map.from(() -> "123").asInt(Long::valueOf)
.toInstance(Integer::new);
.toInstance(Integer::valueOf);
assertThat(result).isEqualTo(123);
}
@ -116,7 +116,7 @@ public class PropertyMapperTests { @@ -116,7 +116,7 @@ public class PropertyMapperTests {
@Test
public void whenTrueWhenValueIsTrueShouldMap() {
Boolean result = this.map.from(true).whenTrue().toInstance(Boolean::new);
Boolean result = this.map.from(true).whenTrue().toInstance(Boolean::valueOf);
assertThat(result).isTrue();
}
@ -127,7 +127,7 @@ public class PropertyMapperTests { @@ -127,7 +127,7 @@ public class PropertyMapperTests {
@Test
public void whenFalseWhenValueIsFalseShouldMap() {
Boolean result = this.map.from(false).whenFalse().toInstance(Boolean::new);
Boolean result = this.map.from(false).whenFalse().toInstance(Boolean::valueOf);
assertThat(result).isFalse();
}
@ -148,7 +148,7 @@ public class PropertyMapperTests { @@ -148,7 +148,7 @@ public class PropertyMapperTests {
@Test
public void whenHasTextWhenValueHasTextShouldMap() {
Integer result = this.map.from(123).whenHasText().toInstance(Integer::new);
Integer result = this.map.from(123).whenHasText().toInstance(Integer::valueOf);
assertThat(result).isEqualTo(123);
}
@ -191,7 +191,7 @@ public class PropertyMapperTests { @@ -191,7 +191,7 @@ public class PropertyMapperTests {
public void whenWhenCombinedWithAsUsesSourceValue() {
Count<String> source = new Count<>(() -> "123");
Long result = this.map.from(source).when("123"::equals).as(Integer::valueOf)
.when((v) -> v == 123).as(Integer::longValue).toInstance(Long::new);
.when((v) -> v == 123).as(Integer::longValue).toInstance(Long::valueOf);
assertThat(result).isEqualTo(123);
assertThat(source.getCount()).isOne();
}

Loading…
Cancel
Save