ChangelogWriterTests Class — spring-boot Architecture
Architecture documentation for the ChangelogWriterTests class in ChangelogWriterTests.java from the spring-boot codebase.
Entity Profile
Source Code
configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/test/java/org/springframework/boot/configurationmetadata/changelog/ChangelogWriterTests.java lines 33–45
class ChangelogWriterTests {
@Test
void writeChangelog() {
StringWriter out = new StringWriter();
try (ChangelogWriter writer = new ChangelogWriter(out)) {
writer.write(TestChangelog.load());
}
String expected = Files.contentOf(new File("src/test/resources/sample.adoc"), StandardCharsets.UTF_8);
assertThat(out).hasToString(expected);
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free