summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-10 14:43:17 +0000
committeruckelman <uckelman@nomic.net>2010-04-10 14:43:17 +0000
commit2b7189767f4d5708948f3989df8c3d8084eab87a (patch)
treea0782abf7dee50026b95f1dd46e3b45043161c97 /test
parent6100be95b7de486dc07bcb5a2ccd58a62d01a9f6 (diff)
Refactored.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6637 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test')
-rw-r--r--test/PhpBB3LibTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/PhpBB3LibTest.php b/test/PhpBB3LibTest.php
index 22f6e0e..21fe862 100644
--- a/test/PhpBB3LibTest.php
+++ b/test/PhpBB3LibTest.php
@@ -67,16 +67,16 @@ EOF;
/**
* @dataProvider provider_get_topic_id
*/
- public function test_get_topic_id($post_id, $expected, $ex) {
+ public function test_get_topic_and_forum_ids($post_id, $expected, $ex) {
if ($ex) $this->setExpectedException($ex);
- $run = 'get_topic_id(' . $post_id . ')';
+ $run = 'get_topic_and_forum_ids(' . $post_id . ')';
$this->assertEquals($expected, $this->exec_kludge($run));
}
public function provider_get_topic_id() {
return array(
- array(0, null, 'PHPUnit_Framework_Error'),
- array(2, 2, null )
+ array(0, null, 'PHPUnit_Framework_Error'),
+ array(2, array('topic_id' => 2, 'forum_id' => 2), null)
);
}
}