aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller/controller_test.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-03-15 13:35:00 +0100
committerDavid King <imkingdavid@gmail.com>2013-03-15 09:18:11 -0400
commitcd697e68129868dc811c141660652360e0f0f983 (patch)
tree0b0094ac947d4d59b37417d9da1fa38835031fce /tests/controller/controller_test.php
parent5850a2cbf6e8313feeb55154e1083d73b45f4dc3 (diff)
downloadforums-cd697e68129868dc811c141660652360e0f0f983.tar
forums-cd697e68129868dc811c141660652360e0f0f983.tar.gz
forums-cd697e68129868dc811c141660652360e0f0f983.tar.bz2
forums-cd697e68129868dc811c141660652360e0f0f983.tar.xz
forums-cd697e68129868dc811c141660652360e0f0f983.zip
[ticket/11334] Include functions.php and fix class name in tests
PHPBB3-11334
Diffstat (limited to 'tests/controller/controller_test.php')
-rw-r--r--tests/controller/controller_test.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/controller/controller_test.php b/tests/controller/controller_test.php
index c4818dbd6a..8cdedb27e2 100644
--- a/tests/controller/controller_test.php
+++ b/tests/controller/controller_test.php
@@ -7,6 +7,8 @@
*
*/
+require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
+
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RouteCollection;
@@ -14,7 +16,7 @@ use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
-class phpbb_controller_test extends phpbb_test_case
+class phpbb_controller_controller_test extends phpbb_test_case
{
public function setUp()
{