Skip to content

Commit c64de20

Browse files
committed
tests: improved descriptions
1 parent 464a071 commit c64de20

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Mail/FallbackMailer.phpt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class FailingMailer implements IMailer
4040
}
4141

4242

43-
test('', function () {
43+
test('all mailers fail after retries, triggering onFailure events', function () {
4444
$subMailerA = new FailingMailer(3);
4545
$subMailerB = new FailingMailer(3);
4646

@@ -60,7 +60,7 @@ test('', function () {
6060
});
6161

6262

63-
test('', function () {
63+
test('partial failures with eventual success after retries', function () {
6464
$subMailerA = new FailingMailer(3);
6565
$subMailerB = new FailingMailer(2);
6666

@@ -74,7 +74,7 @@ test('', function () {
7474
});
7575

7676

77-
test('', function () {
77+
test('immediate success without triggering failure events', function () {
7878
$subMailerA = new FailingMailer(0);
7979
$subMailerB = new FailingMailer(2);
8080

0 commit comments

Comments
 (0)