summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-10 14:36:56 +0000
committeruckelman <uckelman@nomic.net>2010-04-10 14:36:56 +0000
commit6100be95b7de486dc07bcb5a2ccd58a62d01a9f6 (patch)
treeeeb77a8965fcc6bd586ddd2af2a5b7e3531d5011 /test
parent27677e5f97454022d5418ad454aec1df3461f475 (diff)
Fixed registerMessage().
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6636 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r--test/BridgeTest.php28
1 files changed, 23 insertions, 5 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php
index c7f6f47..b90ae02 100644
--- a/test/BridgeTest.php
+++ b/test/BridgeTest.php
@@ -96,15 +96,33 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
/**
* @dataProvider providerRegisterMessage
*/
- public function testRegisterMessage($msg, $expected, $ex) {
- $this->markTestIncomplete();
-# $bridge = new Bridge($this->db);
-# if ($ex) $this->setExpectedException($ex);
-# $this->assertEquals($expected, $bridge->registerMessage($msg));
+ public function testRegisterMessage($postId, $messageId, $inReplyTo, $refs,
+ $expected, $ex) {
+ if ($ex) $this->setExpectedException($ex);
+ $bridge = new Bridge($this->db);
+ $bridge->registerMessage($postId, $messageId, $inReplyTo, $refs);
}
public function providerRegisterMessage() {
return array(
+ array('bogus', null, null, null, null, 'PDOException'),
+ array(1, '', '', '', null, 'PDOException'),
+ array(
+ 2,
+ '<20100302094228.33F0310091@charybdis.ellipsis.cx>',
+ null,
+ null,
+ null,
+ 'PDOException'
+ ),
+ array(
+ 2,
+ '<10100302094228.33F0310091@charybdis.ellipsis.cx>',
+ null,
+ null,
+ null,
+ null,
+ )
);
}