java spring boot 项目,使用mockmvc做自动化测试用例来测试所有controller,现在只有20多个用例,放一个文件里暂时还顶得住,但代码已经500多行了,这样可读性很差。怎么把他分到多个文件里去呢?但到时候执行的时候还是要直接run这个类就全部执行
明确一下,分开了以后,还是要直接run原来这个类就全部执行哦,就是这里不知道该怎么去引
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class MockTest {
private MockMvc mockMvc;
@Autowired
private WebApplicationContext wac;
@Before
public void setup() {
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build();
}}
肥皂起泡泡