summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-03-17 19:46:30 +0000
committeruckelman <uckelman@nomic.net>2010-03-17 19:46:30 +0000
commit13a0097cc17f93ef3ee2a984e807bdead5c6987e (patch)
tree324dbd5b2e3638b941980f9a6cabc88b73dca366
parent369e2a89996d93b50d41c7a8482963bd0e56962a (diff)
Initial version.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6618 67b53d14-2c14-4ace-a08f-0dab2b34000c
-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() {
+ }
+
+}
+
+?>