Skip to content

Commit

Permalink
📝 :: (#12) update comment (verify -> then)
Browse files Browse the repository at this point in the history
  • Loading branch information
iqpizza6349 committed Feb 20, 2023
1 parent 729be33 commit c5c53bc
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ void gmailTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -40,7 +40,7 @@ void naverTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -52,7 +52,7 @@ void daumTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -64,7 +64,7 @@ void yahooTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -76,7 +76,7 @@ void nateTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -88,7 +88,7 @@ void koreaTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -100,7 +100,7 @@ void dgswTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertTrue(result);
}

Expand All @@ -112,7 +112,7 @@ void failTest() {
// when
boolean result = SPI.validationEmail(sample);

// verify
// then
assertFalse(result);
}

Expand Down

0 comments on commit c5c53bc

Please sign in to comment.