build: 按照字母顺序配置
This commit is contained in:
parent
f1addd3018
commit
cb0f4a8344
|
@ -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>
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue