.
UT 测试是在开发中经常用到的,但是究竟用哪一种,这个还要根据具体的业务来确定。
方式一、 api方式
@RunWith(SpringRunner.class)
@SpringBootTest
方式二、 api方式
@RunWith(SpringRunner.class)
@SpringBootTest(classes=XxxApplication.class)
方式三、 Web程序的
@RunWith(SpringRunner.class)
@SpringBootTest(classes = XxxApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
基本上都使用如上这几种方式来操作。