스프링 부트 테스트: 모든 테스트에 대해 컨텍스트가 로드됩니까? 제 프로젝트에는 모든 시험을 위한 슈퍼 클래스가 있습니다.이것은 그 수업의 서명입니다. @RunWith(SpringRunner.class) @SpringBootTest(value = {"management.port=0"}, classes = Application.class, webEnvironment = WebEnvironment.RANDOM_PORT) @ActiveProfiles({"localhost", "test"}) @ContextConfiguration(classes = {Application.class, SomeConfiguration.class}) @Ignore public abstract class AIntegrationTest..