summaryrefslogtreecommitdiff
path: root/test/EmailMessageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/EmailMessageTest.php')
-rw-r--r--test/EmailMessageTest.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/EmailMessageTest.php b/test/EmailMessageTest.php
new file mode 100644
index 0000000..f544477
--- /dev/null
+++ b/test/EmailMessageTest.php
@@ -0,0 +1,41 @@
+<?php
+
+require_once('PHPUnit/Framework.php');
+
+class EmailMessageTest extends PHPUnit_Framework_TestCase {
+
+ /** @test */
+ public function testGetSource() {
+ }
+
+ /** @test */
+ public function testGetPostId() {
+ }
+
+ /** @test */
+ public function testGetFrom() {
+ }
+
+ /** @test */
+ public function testGetSubject() {
+ }
+
+ /** @test */
+ public function testGetMessageId() {
+ }
+
+ /** @test */
+ public function testGetInReplyTo() {
+ }
+
+ /** @test */
+ public function testGetReferences() {
+ }
+
+ /** @test */
+ public function testGetBody() {
+ }
+
+}
+
+?>