platforms/springboot/src/integration-test/java/io/hawt/springboot/HawtioSpringBootTestCommon.java [68:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testCustomManagementBasePath() {
        TestProperties properties = TestProperties.builder()
            .managementBasePath("/management-base-path")
            .build();
        getContextRunner().withPropertyValues(properties.getProperties()).run((context) -> {
            assertHawtioEndpointPaths(context, properties);
        });
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



platforms/springboot/src/integration-test/java/io/hawt/springboot/HawtioSpringBootEndpointIT.java [391:398]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void testEmptyManagementBasePath() {
        TestProperties properties = TestProperties.builder()
            .managementBasePath("")
            .build();
        getContextRunner().withPropertyValues(properties.getProperties()).run((context) -> {
            assertHawtioEndpointPaths(context, properties);
        });
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



