Home / Function/ loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() — spring-boot Function Reference

loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() — spring-boot Function Reference

Architecture documentation for the loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() function in ConfigurationPropertiesTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02["loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind()"]
  c1d57234_8f2d_7ed2_5d63_e937906e268b["getSet()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| c1d57234_8f2d_7ed2_5d63_e937906e268b
  723faf45_147b_9b0f_f957_9de88f8cbb17["isEmpty()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17
  9e880e3c_7c99_3cf1_68e7_d7e39d16aadb["getOptional()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| 9e880e3c_7c99_3cf1_68e7_d7e39d16aadb
  05d207ba_cdfc_1f3b_359f_89b70a0aec4e["load()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| 05d207ba_cdfc_1f3b_359f_89b70a0aec4e
  64c97795_2d2d_e803_a682_0abca7ca378d["getArray()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| 64c97795_2d2d_e803_a682_0abca7ca378d
  f5b6f8e4_5ed9_1127_c9a3_ede4cf2d16da["getMap()"]
  d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 -->|calls| f5b6f8e4_5ed9_1127_c9a3_ede4cf2d16da
  style d49bd2a3_5d1e_1bd9_e2ce_ab7bde88da02 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/ConfigurationPropertiesTests.java lines 1008–1017

	@Test
	void loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() {
		load(ConstructorParameterEmptyDefaultValueConfiguration.class);
		ConstructorParameterEmptyDefaultValueProperties bean = this.context
			.getBean(ConstructorParameterEmptyDefaultValueProperties.class);
		assertThat(bean.getSet()).isEmpty();
		assertThat(bean.getMap()).isEmpty();
		assertThat(bean.getArray()).isEmpty();
		assertThat(bean.getOptional()).isEmpty();
	}

Domain

Subdomains

Calls

Frequently Asked Questions

What does loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() do?
loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() is a function in the spring-boot codebase.
What does loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() call?
loadWhenBindingToConstructorParametersWithEmptyDefaultValueShouldBind() calls 6 function(s): getArray, getMap, getOptional, getSet, isEmpty, load.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free