-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathToAssertionsTest.php
92 lines (70 loc) · 2.26 KB
/
ToAssertionsTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php
namespace Tests\Fluent;
use KirschbaumDevelopment\MailIntercept\AssertableMessage;
use PHPUnit\Framework\ExpectationFailedException;
use Symfony\Component\Mime\Email;
use Tests\TestCase;
class ToAssertionsTest extends TestCase
{
public function testMailSentToSingleEmail()
{
$email = $this->faker->email;
$mail = new AssertableMessage(
(new Email())->to($email)
);
$mail->assertSentTo($email);
}
public function testMailSentToThrowsProperExpectationFailedException()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->to($this->faker->unique()->email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail was not sent to the expected address [{$email}].");
$mail->assertSentTo($email);
}
public function testMailSentToMultipleEmails()
{
$emails = [
$this->faker->email,
$this->faker->email,
];
$mail = new AssertableMessage(
(new Email())->to(...$emails)
);
$mail->assertSentTo($emails);
}
public function testMailNotSentToSingleEmail()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->to($this->faker->unique()->email)
);
$mail->assertNotSentTo($email);
}
public function testMailNotSentToThrowsProperExpectationFailedException()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->to($email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail was sent to the expected address [{$email}].");
$mail->assertNotSentTo($email);
}
public function testMailNotSentToMultipleEmails()
{
$emails = [
$this->faker->unique()->email,
$this->faker->unique()->email,
];
$mail = new AssertableMessage(
(new Email())->to(
$this->faker->unique()->email,
$this->faker->unique()->email
)
);
$mail->assertNotSentTo($emails);
}
}