summaryrefslogtreecommitdiff
path: root/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php')
-rw-r--r--vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php b/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php
deleted file mode 100644
index bd10c716..00000000
--- a/vendor/swiftmailer/swiftmailer/tests/bug/Swift/Bug118Test.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-class Swift_Bug118Test extends \PHPUnit_Framework_TestCase
-{
- private $_message;
-
- public function setUp()
- {
- $this->_message = new Swift_Message();
- }
-
- public function testCallingGenerateIdChangesTheMessageId()
- {
- $currentId = $this->_message->getId();
- $this->_message->generateId();
- $newId = $this->_message->getId();
-
- $this->assertNotEquals($currentId, $newId);
- }
-}