diff options
author | uckelman <uckelman@nomic.net> | 2010-04-11 19:06:13 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-04-11 19:06:13 +0000 |
commit | 82a149fedf11c76fe38469dc9dd2eca2b31a5db7 (patch) | |
tree | b42ef6667231853682f63878fab9a042b597d937 /test/PhpBB3Test.php | |
parent | 001f9be89da75fd15aec093857458a270499e681 (diff) |
s/PHPUnit_Framework_Error/Exception/g
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@6670 67b53d14-2c14-4ace-a08f-0dab2b34000c
Diffstat (limited to 'test/PhpBB3Test.php')
-rw-r--r-- | test/PhpBB3Test.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3Test.php index c3f7bae..a5bd7ba 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3Test.php @@ -44,7 +44,7 @@ EOF; public function providerGetUserId() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array('uckelman@nomic.net', 2, null) ); } @@ -60,7 +60,7 @@ EOF; public function providerGetUserName() { return array( - array(0, null, 'PHPUnit_Framework_Error'), + array(0, null, 'Exception'), array(2, 'admin', null ) ); } @@ -76,7 +76,7 @@ EOF; public function providerGetTopicAndForumIds() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(2, array('topic_id' => 2, 'forum_id' => 2), null) ); } @@ -92,7 +92,7 @@ EOF; public function providerForumExists() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(0, false, null), array(2, true, null) ); @@ -109,7 +109,7 @@ EOF; public function providerTopicExists() { return array( - array('bogus', null, 'PHPUnit_Framework_Error'), + array('bogus', null, 'Exception'), array(0, false, null), array(1, true, null) ); |