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

bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() — spring-boot Function Reference

Architecture documentation for the bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() function in CollectionBinderTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  7fb69317_165a_5df2_c7d8_fd8f336c7a89["bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail()"]
  dec6e978_683d_a8e4_7ae5_e3e729d3253e["MockConfigurationPropertySource()"]
  7fb69317_165a_5df2_c7d8_fd8f336c7a89 -->|calls| dec6e978_683d_a8e4_7ae5_e3e729d3253e
  1aeb892c_57b9_ec83_d74d_921ad48008fa["nonIterable()"]
  7fb69317_165a_5df2_c7d8_fd8f336c7a89 -->|calls| 1aeb892c_57b9_ec83_d74d_921ad48008fa
  f4b76c1c_abdc_fe17_d6c1_88412a0633e7["of()"]
  7fb69317_165a_5df2_c7d8_fd8f336c7a89 -->|calls| f4b76c1c_abdc_fe17_d6c1_88412a0633e7
  style 7fb69317_165a_5df2_c7d8_fd8f336c7a89 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/CollectionBinderTests.java lines 443–450

	@Test
	void bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() {
		// gh-10702
		MockConfigurationPropertySource source = new MockConfigurationPropertySource();
		this.sources.add(source.nonIterable());
		Bindable<BeanWithNestedCollection> target = Bindable.of(BeanWithNestedCollection.class);
		this.binder.bind("foo", target);
	}

Domain

Subdomains

Frequently Asked Questions

What does bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() do?
bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() is a function in the spring-boot codebase.
What does bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() call?
bindToBeanWithNestedCollectionAndNonIterableSourceShouldNotFail() calls 3 function(s): MockConfigurationPropertySource, nonIterable, of.

Analyze Your Own Codebase

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

Try Supermodel Free