From bae4e7aa3345ca56dd86ca5fb84abbde8ae5383b Mon Sep 17 00:00:00 2001 From: uckelman Date: Sun, 11 Apr 2010 15:35:25 +0000 Subject: Added topicExists(). git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6655 67b53d14-2c14-4ace-a08f-0dab2b34000c --- test/PhpBB3Test.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'test') diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index a853b8b..1ff9b88 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -99,4 +99,23 @@ EOF; array(2, true, null) ); } + + /** + * @dataProvider providerTopicExists + */ + public function testTopicExists($topic_id, $expected, $ex) { + if ($ex) $this->setExpectedException($ex); + $run = 'topicExists(' . $topic_id . ')'; + $this->assertEquals($expected, $this->exec_kludge($run)); + } + + public function providerTopicExists() { + return array( + array('bogus', null, 'PHPUnit_Framework_Error'), + array(3.5, null, 'PHPUnit_Framework_Error'), + array(-1, null, 'PHPUnit_Framework_Error'), + array(0, false, null), + array(1, true, null) + ); + } } -- cgit v1.2.3