Skip to content

Commit

Permalink
feat-密码复杂度单元测试补充
Browse files Browse the repository at this point in the history
  • Loading branch information
6greenhand committed Dec 30, 2024
1 parent aa25079 commit b4f1337
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,8 @@ void setUp() {
}

@Test
@DisplayName("测试密码复杂度1")
@DisplayName("验证密码长度少于8位 但 包含英文字母")
void testPasswordComplexity1() {

//情况1:密码长度少于8位
// 修改密码
String s1 = given()
Expand Down Expand Up @@ -103,7 +102,7 @@ void testPasswordComplexity1() {
}

@Test
@DisplayName("测试密码复杂度2")
@DisplayName("验证密码不包含英文字母 但 长度达到8位")
void testPasswordComplexity2() {
//情况2:密码不包含英文字母
// 修改密码
Expand Down Expand Up @@ -140,7 +139,7 @@ void testPasswordComplexity2() {
}

@Test
@DisplayName("测试密码复杂度3")
@DisplayName("验证密码长度少于8位 且 不包含英文字母")
void testPasswordComplexity3() {
//情况3:密码少于8位 且 不包含英文字母
// 修改密码
Expand Down Expand Up @@ -177,7 +176,7 @@ void testPasswordComplexity3() {
}

@Test
@DisplayName("测试密码复杂度4")
@DisplayName("验证密码长度达到8位 且 密码包含英文字母")
void testPasswordComplexity4() {
//情况4:修改密码成功
// 修改密码
Expand Down

0 comments on commit b4f1337

Please sign in to comment.