diff options
author | uckelman <uckelman@nomic.net> | 2010-10-31 20:57:51 +0000 |
---|---|---|
committer | uckelman <uckelman@nomic.net> | 2010-10-31 20:57:51 +0000 |
commit | a467a3c455b1078de6076121886837d103ce41be (patch) | |
tree | 029c9f0271bc955ae1e77d53b226ffd995cf64f6 | |
parent | 88d4c55ec38c68c07496ed059616b15622fc83e7 (diff) |
Renamed.
git-svn-id: https://vassalengine.svn.sourceforge.net/svnroot/vassalengine/site-src/trunk@7432 67b53d14-2c14-4ace-a08f-0dab2b34000c
-rw-r--r-- | test/PhpBB3ImplTest.php (renamed from test/PhpBB3Test.php) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/PhpBB3Test.php b/test/PhpBB3ImplTest.php index 170a15b..63a828d 100644 --- a/test/PhpBB3Test.php +++ b/test/PhpBB3ImplTest.php @@ -22,7 +22,7 @@ require_once('PHPUnit/Framework.php'); -class PhpBB3Test extends PHPUnit_Framework_TestCase { +class PhpBB3ImplTest extends PHPUnit_Framework_TestCase { /** * phpBB3 uses many globals; due to the way tests are run, we cannot @@ -33,7 +33,7 @@ class PhpBB3Test extends PHPUnit_Framework_TestCase { protected function exec_kludge($run) { $prog = <<<EOF try { - require_once("src/PhpBB3.php"); + require_once("src/PhpBB3Impl.php"); \$phpBB = new PhpBB3(); \$result = serialize(\$phpBB->$run); } |