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

assertProperty() — spring-boot Function Reference

Architecture documentation for the assertProperty() function in ChangelogTests.java from the spring-boot codebase.

Function java GradlePlugin AotProcessing calls 3 called by 1

Entity Profile

Dependency Diagram

graph TD
  24224517_eec0_6822_4733_641b46d098fc["assertProperty()"]
  ee782c23_07d8_70d3_e21b_5e61792327e7["diffContainsDifferencesBetweenLeftAndRightInputs()"]
  ee782c23_07d8_70d3_e21b_5e61792327e7 -->|calls| 24224517_eec0_6822_4733_641b46d098fc
  15f76044_b9ff_0a94_9e6a_3974bb4b5465["getId()"]
  24224517_eec0_6822_4733_641b46d098fc -->|calls| 15f76044_b9ff_0a94_9e6a_3974bb4b5465
  873b6ddd_d19a_a9b0_87ee_c08e71312617["getType()"]
  24224517_eec0_6822_4733_641b46d098fc -->|calls| 873b6ddd_d19a_a9b0_87ee_c08e71312617
  731b0a73_1333_0281_e337_e0290495589e["getDefaultValue()"]
  24224517_eec0_6822_4733_641b46d098fc -->|calls| 731b0a73_1333_0281_e337_e0290495589e
  style 24224517_eec0_6822_4733_641b46d098fc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/test/java/org/springframework/boot/configurationmetadata/changelog/ChangelogTests.java lines 78–83

	private void assertProperty(ConfigurationMetadataProperty property, String id, Class<?> type, Object defaultValue) {
		assertThat(property).isNotNull();
		assertThat(property.getId()).isEqualTo(id);
		assertThat(property.getType()).isEqualTo(type.getCanonicalName());
		assertThat(property.getDefaultValue()).isEqualTo(defaultValue);
	}

Domain

Subdomains

Calls

Called By

  • diffContainsDifferencesBetweenLeftAndRightInputs()

Frequently Asked Questions

What does assertProperty() do?
assertProperty() is a function in the spring-boot codebase.
What does assertProperty() call?
assertProperty() calls 3 function(s): getDefaultValue, getId, getType.
What calls assertProperty()?
assertProperty() is called by 1 function(s): diffContainsDifferencesBetweenLeftAndRightInputs.

Analyze Your Own Codebase

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

Try Supermodel Free