Home / Class/ GenericReactiveWebApplicationContextTests Class — spring-boot Architecture

GenericReactiveWebApplicationContextTests Class — spring-boot Architecture

Architecture documentation for the GenericReactiveWebApplicationContextTests class in GenericReactiveWebApplicationContextTests.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/web/context/reactive/GenericReactiveWebApplicationContextTests.java lines 30–41

class GenericReactiveWebApplicationContextTests {

	@Test
	void getResourceByPath() throws Exception {
		GenericReactiveWebApplicationContext context = new GenericReactiveWebApplicationContext();
		Resource rootResource = context.getResourceByPath("/");
		assertThat(rootResource.exists()).isFalse();
		assertThat(rootResource.createRelative("application.properties").exists()).isFalse();
		context.close();
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free