-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSenderAssertionsTest.php
61 lines (45 loc) · 1.59 KB
/
SenderAssertionsTest.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
<?php
namespace Tests\Fluent;
use KirschbaumDevelopment\MailIntercept\AssertableMessage;
use PHPUnit\Framework\ExpectationFailedException;
use Symfony\Component\Mime\Email;
use Tests\TestCase;
class SenderAssertionsTest extends TestCase
{
public function testMailSenderSingleEmail()
{
$email = $this->faker->email;
$mail = new AssertableMessage(
(new Email())->sender($email)
);
$mail->assertSender($email);
}
public function testMailSenderThrowsProperExpectationFailedException()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->sender($this->faker->unique()->email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail sender was not from the expected address [{$email}].");
$mail->assertSender($email);
}
public function testMailNotSenderSingleEmail()
{
$email = $this->faker->unique()->email;
$mail = new AssertableMessage(
(new Email())->sender($this->faker->unique()->email)
);
$mail->assertNotSender($email);
}
public function testMailNotSenderThrowsProperExpectationFailedException()
{
$email = $this->faker->email;
$mail = new AssertableMessage(
(new Email())->sender($email)
);
$this->expectException(ExpectationFailedException::class);
$this->expectExceptionMessage("Mail sender was from the expected address [{$email}].");
$mail->assertNotSender($email);
}
}