Commit a6efe77a authored by Stephane Nicoll's avatar Stephane Nicoll

Polish "Calculate hashCode only once in ConfigurationPropertyName"

See gh-21394
parent 46f35346
...@@ -24,6 +24,7 @@ import java.util.stream.Collectors; ...@@ -24,6 +24,7 @@ import java.util.stream.Collectors;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
import org.springframework.boot.context.properties.source.ConfigurationPropertyName.Form; import org.springframework.boot.context.properties.source.ConfigurationPropertyName.Form;
import org.springframework.test.util.ReflectionTestUtils;
import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
...@@ -623,7 +624,8 @@ class ConfigurationPropertyNameTests { ...@@ -623,7 +624,8 @@ class ConfigurationPropertyNameTests {
void hashCodeIsStored() { void hashCodeIsStored() {
ConfigurationPropertyName name = ConfigurationPropertyName.of("hash.code"); ConfigurationPropertyName name = ConfigurationPropertyName.of("hash.code");
int hashCode = name.hashCode(); int hashCode = name.hashCode();
assertThat(name).hasFieldOrPropertyWithValue("hashCode", hashCode); // hasFieldOrPropertyWithValue would lookup for `hashCode()`.
assertThat(ReflectionTestUtils.getField(name, "hashCode")).isEqualTo(hashCode);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment