SpringBoot 测试类 @RunWith & @SpringBootTest

@RunWith(SpringRunner.class)
@SpringBootTest
public class RabbitMqTest {
    
    @Autowired
    RabbitMqSender rabbitMqSender;
    
    @Autowired
    IUserBaseInfoService userBaseInfoService;
    @Test
    public void sendMessage() {
 
    }
}
原文地址:https://www.cnblogs.com/dianzan/p/11179752.html