Merge pull request #15853 from kedar-joshi

* pr/15853:
  Polish contribution
  Polish
pull/15858/head
Stephane Nicoll 6 years ago
commit 6516d95ff5

@ -1,5 +1,5 @@
/* /*
* Copyright 2012-2018 the original author or authors. * Copyright 2012-2019 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -50,7 +50,7 @@ public class PropertyMapperTests {
@Test @Test
public void fromValueAsIntShouldAdaptValue() { public void fromValueAsIntShouldAdaptValue() {
Integer result = this.map.from("123").asInt(Long::valueOf) Integer result = this.map.from("123").asInt(Long::valueOf)
.toInstance(Integer::new); .toInstance(Integer::valueOf);
assertThat(result).isEqualTo(123); assertThat(result).isEqualTo(123);
} }
@ -84,7 +84,7 @@ public class PropertyMapperTests {
@Test @Test
public void asIntShouldAdaptSupplier() { public void asIntShouldAdaptSupplier() {
Integer result = this.map.from(() -> "123").asInt(Long::valueOf) Integer result = this.map.from(() -> "123").asInt(Long::valueOf)
.toInstance(Integer::new); .toInstance(Integer::valueOf);
assertThat(result).isEqualTo(123); assertThat(result).isEqualTo(123);
} }
@ -116,7 +116,7 @@ public class PropertyMapperTests {
@Test @Test
public void whenTrueWhenValueIsTrueShouldMap() { 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(); assertThat(result).isTrue();
} }
@ -127,7 +127,7 @@ public class PropertyMapperTests {
@Test @Test
public void whenFalseWhenValueIsFalseShouldMap() { 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(); assertThat(result).isFalse();
} }
@ -148,7 +148,7 @@ public class PropertyMapperTests {
@Test @Test
public void whenHasTextWhenValueHasTextShouldMap() { 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); assertThat(result).isEqualTo(123);
} }
@ -191,7 +191,7 @@ public class PropertyMapperTests {
public void whenWhenCombinedWithAsUsesSourceValue() { public void whenWhenCombinedWithAsUsesSourceValue() {
Count<String> source = new Count<>(() -> "123"); Count<String> source = new Count<>(() -> "123");
Long result = this.map.from(source).when("123"::equals).as(Integer::valueOf) 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(result).isEqualTo(123);
assertThat(source.getCount()).isOne(); assertThat(source.getCount()).isOne();
} }

Loading…
Cancel
Save