diff options
author | uckelman <uckelman@nomic.net> | 2010-03-17 19:46:30 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-03-17 19:46:30 +0000 |
commit | 13a0097cc17f93ef3ee2a984e807bdead5c6987e (patch) | |
tree | 324dbd5b2e3638b941980f9a6cabc88b73dca366 | |
parent | 369e2a89996d93b50d41c7a8482963bd0e56962a (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.php | 41 |
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() { + } + +} + +?> |