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

startAndEndWithNull() — spring-boot Function Reference

Architecture documentation for the startAndEndWithNull() function in JsonValueWriterTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  1806c3d4_abf3_4426_3859_450692382fe0["startAndEndWithNull()"]
  7fc2b33a_7e77_5c75_2c77_4db301c6cfdf["doWrite()"]
  1806c3d4_abf3_4426_3859_450692382fe0 -->|calls| 7fc2b33a_7e77_5c75_2c77_4db301c6cfdf
  89a357dc_1a31_85ba_97ae_69c518e780d2["write()"]
  1806c3d4_abf3_4426_3859_450692382fe0 -->|calls| 89a357dc_1a31_85ba_97ae_69c518e780d2
  f658f7a9_f73d_0782_4281_7e4105e17118["quoted()"]
  1806c3d4_abf3_4426_3859_450692382fe0 -->|calls| f658f7a9_f73d_0782_4281_7e4105e17118
  style 1806c3d4_abf3_4426_3859_450692382fe0 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/json/JsonValueWriterTests.java lines 237–245

	@Test
	void startAndEndWithNull() {
		String actual = doWrite((valueWriter) -> {
			valueWriter.start(null);
			valueWriter.write("test");
			valueWriter.end(null);
		});
		assertThat(actual).isEqualTo(quoted("test"));
	}

Domain

Subdomains

Frequently Asked Questions

What does startAndEndWithNull() do?
startAndEndWithNull() is a function in the spring-boot codebase.
What does startAndEndWithNull() call?
startAndEndWithNull() calls 3 function(s): doWrite, quoted, write.

Analyze Your Own Codebase

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

Try Supermodel Free