build: 按照字母顺序配置

This commit is contained in:
CaptainB 2023-05-24 16:32:59 +08:00 committed by 刘瑞斌
parent f1addd3018
commit cb0f4a8344
2 changed files with 5 additions and 5 deletions

View File

@ -15,12 +15,12 @@
<modules>
<module>api-test</module>
<module>functional-test</module>
<module>issue-management</module>
<module>load-test</module>
<module>project-management</module>
<module>system-setting</module>
<module>test-plan</module>
<module>functional-test</module>
<module>ui-test</module>
<module>workstation</module>
</modules>

View File

@ -84,7 +84,7 @@ public class UserControllerTests {
}
@Test
// @Test
@Order(5)
public void testBatchAddUser() throws Exception {
var users = new ArrayList<User>();
@ -108,7 +108,7 @@ public class UserControllerTests {
.andExpect(content().contentType(MediaType.APPLICATION_JSON));
}
@Test
// @Test
@Order(6)
public void testBatchAddUser2() throws Exception {
var users = new ArrayList<User>();
@ -132,7 +132,7 @@ public class UserControllerTests {
.andExpect(content().contentType(MediaType.APPLICATION_JSON));
}
@Test
// @Test
@Order(7)
public void testBatchAddUser3() throws Exception {
var users = new ArrayList<User>();
@ -156,7 +156,7 @@ public class UserControllerTests {
.andExpect(content().contentType(MediaType.APPLICATION_JSON));
}
@Test
// @Test
@Order(8)
public void testCount() throws Exception {
mockMvc.perform(MockMvcRequestBuilders.get("/user/count")