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

bindToArrayWhenNestedListShouldReturnPopulatedArray() — spring-boot Function Reference

Architecture documentation for the bindToArrayWhenNestedListShouldReturnPopulatedArray() function in ArrayBinderTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  f5920773_74ff_b0fa_6337_14df2493ec46["bindToArrayWhenNestedListShouldReturnPopulatedArray()"]
  dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e
  725e97d2_341b_6665_84bc_9206c7185c54["put()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| 725e97d2_341b_6665_84bc_9206c7185c54
  7ed947bf_22a1_2781_a2ae_759aa1907445["add()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| 7ed947bf_22a1_2781_a2ae_759aa1907445
  8d8ef66e_fc29_736c_c815_846df9fa8305["getType()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| 8d8ef66e_fc29_736c_c815_846df9fa8305
  d7626b8d_946e_609d_ccf0_ffbf47d8df9a["get()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| d7626b8d_946e_609d_ccf0_ffbf47d8df9a
  76576a77_87f7_3680_8561_2923813db3c1["of()"]
  f5920773_74ff_b0fa_6337_14df2493ec46 -->|calls| 76576a77_87f7_3680_8561_2923813db3c1
  style f5920773_74ff_b0fa_6337_14df2493ec46 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ArrayBinderTests.java lines 109–123

	@Test
	void bindToArrayWhenNestedListShouldReturnPopulatedArray() {
		MockConfigurationPropertySource source = new MockConfigurationPropertySource();
		source.put("foo[0][0]", "1");
		source.put("foo[0][1]", "2");
		source.put("foo[1][0]", "3");
		source.put("foo[1][1]", "4");
		this.sources.add(source);
		ResolvableType type = ResolvableType.forArrayComponent(INTEGER_LIST.getType());
		Bindable<List<Integer>[]> target = Bindable.of(type);
		List<Integer>[] result = this.binder.bind("foo", target).get();
		assertThat(result).hasSize(2);
		assertThat(result[0]).containsExactly(1, 2);
		assertThat(result[1]).containsExactly(3, 4);
	}

Domain

Subdomains

Frequently Asked Questions

What does bindToArrayWhenNestedListShouldReturnPopulatedArray() do?
bindToArrayWhenNestedListShouldReturnPopulatedArray() is a function in the spring-boot codebase.
What does bindToArrayWhenNestedListShouldReturnPopulatedArray() call?
bindToArrayWhenNestedListShouldReturnPopulatedArray() calls 6 function(s): MockConfigurationPropertySource, add, get, getType, of, put.

Analyze Your Own Codebase

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

Try Supermodel Free