gpt4 book ai didi

java - spring test\Junit - 跳过测试配置

转载 作者:行者123 更新时间:2023-12-01 12:55:49 24 4
gpt4 key购买 nike

我有以下类(class):

@Configuration
@EnableWebSocketMessageBroker
@EnableScheduling
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {

@Override
public void configureMessageBroker(MessageBrokerRegistry config) {

config.enableStompBrokerRelay(
"/topic",
"/queue/");
config.setApplicationDestinationPrefixes("/app");
}


@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {

registry.addEndpoint(
"/wsdemo").withSockJS();
}

}

每当我运行测试时,我希望能够配置上面的类。这可能吗?

谢谢!

最佳答案

普通的 Junit 测试(没有 spring runner)将确保该类没有被配置。然后,您可以使用模拟对象(请参阅 Mockito)来满足任何依赖关系。

关于java - spring test\Junit - 跳过测试配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23911180/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com