diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 20:02:30 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 20:02:30 +0000 |
commit | 6847dc5559f6dd64d26302fb94af0ba3ce129728 (patch) | |
tree | 3679eaa99806e276b288fed723df7c8c5ade1672 | |
parent | 10faf8a9f31043ca94d7f53e4370fb74d0c75b32 (diff) |
Updated test cases.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6676 67b53d14-2c14-4ace-a08f-0dab2b34000c
-rw-r--r-- | test/PhpBB3Test.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index a5bd7ba..ca94526 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -44,7 +44,8 @@ EOF; public function providerGetUserId() { return array( - array('bogus', null, 'Exception'), + array(null, null, 'Exception'), + array('bogus', false, null), array('uckelman@nomic.net', 2, null) ); } @@ -76,7 +77,8 @@ EOF; public function providerGetTopicAndForumIds() { return array( - array('bogus', null, 'Exception'), + array(null, null, 'Exception'), + array('bogus', false, null), array(2, array('topic_id' => 2, 'forum_id' => 2), null) ); } |