summaryrefslogtreecommitdiff
path: root/test/BridgeTest.php
diff options
context:
space:
mode:
authoruckelman <uckelman@nomic.net>2010-04-11 19:06:13 +0000
committeruckelman <uckelman@nomic.net>2010-04-11 19:06:13 +0000
commit82a149fedf11c76fe38469dc9dd2eca2b31a5db7 (patch)
treeb42ef6667231853682f63878fab9a042b597d937 /test/BridgeTest.php
parent001f9be89da75fd15aec093857458a270499e681 (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/BridgeTest.php')
-rw-r--r--test/BridgeTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/BridgeTest.php b/test/BridgeTest.php
index 94eae5d..72cae16 100644
--- a/test/BridgeTest.php
+++ b/test/BridgeTest.php
@@ -72,7 +72,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerGetPostId() {
return array(
- array('bogus', null, 'PHPUnit_Framework_Error'),
+ array('bogus', null, 'Exception'),
array('<20100302094228.33F0310091@charybdis.ellipsis.cx>', 1, null),
);
}
@@ -88,7 +88,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerGetMessageId() {
return array(
- array('bogus', null, 'PHPUnit_Framework_Error'),
+ array('bogus', null, 'Exception'),
array(1, '<20100302094228.33F0310091@charybdis.ellipsis.cx>', null),
);
}
@@ -108,7 +108,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerRegisterMessage() {
return array(
- array(null, null, null, null, 'PHPUnit_Framework_Error'),
+ array(null, null, null, null, 'Exception'),
array(
'<20100302094228.33F0310091@charybdis.ellipsis.cx>',
null,
@@ -137,7 +137,7 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerGetDefaultForumId() {
return array(
- array('bogus', null, 'PHPUnit_Framework_Error'),
+ array('bogus', null, 'Exception'),
array('messages@forums.vassalengine.org', 2, null),
);
}
@@ -155,8 +155,8 @@ class BridgeTest extends PHPUnit_Framework_TestCase {
public function providerSetPostId() {
return array(
- array(null, 1, 'PHPUnit_Framework_Error'),
- array('<10100302094228.33F0310091@charybdis.ellipsis.cx>', null, 'PHPUnit_Framework_Error'),
+ array(null, 1, 'Exception'),
+ array('<10100302094228.33F0310091@charybdis.ellipsis.cx>', null, 'Exception'),
array('<20100302094228.33F0310091@charybdis.ellipsis.cx>', 2, null),
array('<20100302094228.33F0310091@charybdis.ellipsis.cx>', 3, null),
);