summaryrefslogtreecommitdiff
path: root/test/BridgeTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/BridgeTest.php')
-rw-r--r--test/BridgeTest.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php
index 6925847..f3d3b48 100644
--- a/test/BridgeTest.php
+++ b/test/BridgeTest.php
@@ -165,6 +165,24 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
}
/**
+ * @dataProvider providerUnregisterPost
+ */
+ public function testUnregisterPost($postId, $ex) {
+ if ($ex) $this->setExpectedException($ex);
+ $bridge = new Bridge($this->db);
+ $bridge->unregisterPost($postId);
+ $this->assertEquals(false, $bridge->getMessageId($postId));
+ }
+
+ public function providerUnregisterMessage() {
+ return array(
+ array(null, 'Exception'),
+ array(1, 'Exception'),
+ array(2, null),
+ );
+ }
+
+ /**
* @dataProvider providerGetDefaultForumId
*/
public function testGetDefaultForumId($list, $expected, $ex) {