diff options
author | uckelman <uckelman@nomic.net> | 2010-04-13 22:16:59 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-13 22:16:59 +0000 |
commit | 6d8c656e6598c83c8a45dc9aaaf61d8cd2048b5d (patch) | |
tree | 6ad52bac1d19f08d0f1bd22a273a32b7817720af /test | |
parent | 5500ac2e1beacd4a15cdb2715649749b9adae8c5 (diff) |
Removed unused methods.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6712 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r-- | test/PhpBB3Test.php | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index d43b386..fbd68e2 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -67,23 +67,6 @@ EOF; } /** - * @dataProvider providerGetTopicId - */ - public function testGetTopicId($post_id, $expected, $ex) { - if ($ex) $this->setExpectedException($ex); - $run = 'getTopicId(' . $post_id . ')'; - $this->assertEquals($expected, $this->exec_kludge($run)); - } - - public function providerGetTopicId() { - return array( - array(null, null, 'Exception'), - array('bogus', false, null), - array(2, 2, null) - ); - } - - /** * @dataProvider providerGetTopicAndForumIds */ public function testGetTopicAndForumIds($post_id, $expected, $ex) { @@ -149,20 +132,4 @@ EOF; return array( ); } - - /** - * @dataProvider providerGetFirstPostId - */ - public function testGetFirstPostId($topic_id, $expected, $ex) { - $this->markTestIncomplete(); - - if ($ex) $this->setExpectedException($ex); - $run = 'getFirstPostId(' . $topic_id . ')'; - $this->assertEquals($expected, $this->exec_kludge($run)); - } - - public function providerGetFirstPostId() { - return array( - ); - } } |