summaryrefslogtreecommitdiff
path: root/tests/Unit/Mail
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Mail')
-rw-r--r--tests/Unit/Mail/EngelsystemMailerTest.php2
-rw-r--r--tests/Unit/Mail/MailerServiceProviderTest.php2
-rw-r--r--tests/Unit/Mail/MailerTest.php2
-rw-r--r--tests/Unit/Mail/Transport/TransportTest.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/Unit/Mail/EngelsystemMailerTest.php b/tests/Unit/Mail/EngelsystemMailerTest.php
index 0f60ff3b..12dc3b0b 100644
--- a/tests/Unit/Mail/EngelsystemMailerTest.php
+++ b/tests/Unit/Mail/EngelsystemMailerTest.php
@@ -40,9 +40,9 @@ class EngelsystemMailerTest extends TestCase
}
/**
+ * @covers \Engelsystem\Mail\EngelsystemMailer::getSubjectPrefix
* @covers \Engelsystem\Mail\EngelsystemMailer::send
* @covers \Engelsystem\Mail\EngelsystemMailer::setSubjectPrefix
- * @covers \Engelsystem\Mail\EngelsystemMailer::getSubjectPrefix
*/
public function testSend()
{
diff --git a/tests/Unit/Mail/MailerServiceProviderTest.php b/tests/Unit/Mail/MailerServiceProviderTest.php
index 793cd1f2..f0e1775f 100644
--- a/tests/Unit/Mail/MailerServiceProviderTest.php
+++ b/tests/Unit/Mail/MailerServiceProviderTest.php
@@ -79,7 +79,7 @@ class MailerServiceProviderTest extends ServiceProviderTest
[SendmailTransport::class, ['email' => ['driver' => 'sendmail']]],
[
SmtpTransport::class,
- $this->smtpConfig
+ $this->smtpConfig,
],
];
}
diff --git a/tests/Unit/Mail/MailerTest.php b/tests/Unit/Mail/MailerTest.php
index 24c6f69a..bfecdd07 100644
--- a/tests/Unit/Mail/MailerTest.php
+++ b/tests/Unit/Mail/MailerTest.php
@@ -13,8 +13,8 @@ class MailerTest extends TestCase
/**
* @covers \Engelsystem\Mail\Mailer::__construct
* @covers \Engelsystem\Mail\Mailer::getFromAddress
- * @covers \Engelsystem\Mail\Mailer::setFromAddress
* @covers \Engelsystem\Mail\Mailer::getFromName
+ * @covers \Engelsystem\Mail\Mailer::setFromAddress
* @covers \Engelsystem\Mail\Mailer::setFromName
*/
public function testInitAndSettersAndGetters()
diff --git a/tests/Unit/Mail/Transport/TransportTest.php b/tests/Unit/Mail/Transport/TransportTest.php
index 5e7b7b9b..ac7735bb 100644
--- a/tests/Unit/Mail/Transport/TransportTest.php
+++ b/tests/Unit/Mail/Transport/TransportTest.php
@@ -70,8 +70,8 @@ class TransportTest extends TestCase
}
/**
- * @covers \Engelsystem\Mail\Transport\Transport::getTo
* @covers \Engelsystem\Mail\Transport\Transport::formatTo
+ * @covers \Engelsystem\Mail\Transport\Transport::getTo
*/
public function testGetTo()
{