diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-05 18:16:50 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-05-05 18:16:50 +0200 |
commit | baef26f7ed44ada30c3ed345035d2b4d7cea3a2f (patch) | |
tree | 73a0d2b8b6b7ee7865f5f7c2eb4152a1dfaaaa2d /tests | |
parent | 324daf72fec829a4a937879ef0615829443114cc (diff) | |
download | forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.gz forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.bz2 forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.tar.xz forums-baef26f7ed44ada30c3ed345035d2b4d7cea3a2f.zip |
[ticket/12503] All tests should extend \phpbb_test_case
PHPBB3-12503
Diffstat (limited to 'tests')
-rw-r--r-- | tests/avatar/manager_test.php | 2 | ||||
-rw-r--r-- | tests/bbcode/parser_test.php | 2 | ||||
-rw-r--r-- | tests/class_loader/class_loader_test.php | 2 | ||||
-rw-r--r-- | tests/cron/manager_test.php | 2 | ||||
-rw-r--r-- | tests/passwords/drivers_test.php | 2 | ||||
-rw-r--r-- | tests/passwords/manager_test.php | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/tests/avatar/manager_test.php b/tests/avatar/manager_test.php index 527bb223d5..01c058a1bd 100644 --- a/tests/avatar/manager_test.php +++ b/tests/avatar/manager_test.php @@ -9,7 +9,7 @@ require_once dirname(__FILE__) . '/driver/foobar.php'; -class phpbb_avatar_manager_test extends PHPUnit_Framework_TestCase +class phpbb_avatar_manager_test extends \phpbb_test_case { public function setUp() { diff --git a/tests/bbcode/parser_test.php b/tests/bbcode/parser_test.php index d0dcce5bbf..4bf5037f45 100644 --- a/tests/bbcode/parser_test.php +++ b/tests/bbcode/parser_test.php @@ -12,7 +12,7 @@ require_once dirname(__FILE__) . '/../../phpBB/includes/functions_content.php'; require_once dirname(__FILE__) . '/../../phpBB/includes/bbcode.php'; require_once dirname(__FILE__) . '/../../phpBB/includes/message_parser.php'; -class phpbb_bbcode_parser_test extends PHPUnit_Framework_TestCase +class phpbb_bbcode_parser_test extends \phpbb_test_case { public function bbcode_firstpass_data() { diff --git a/tests/class_loader/class_loader_test.php b/tests/class_loader/class_loader_test.php index 6e551f658a..d3c7bb0579 100644 --- a/tests/class_loader/class_loader_test.php +++ b/tests/class_loader/class_loader_test.php @@ -7,7 +7,7 @@ * */ -class phpbb_class_loader_test extends PHPUnit_Framework_TestCase +class phpbb_class_loader_test extends \phpbb_test_case { public function setUp() { diff --git a/tests/cron/manager_test.php b/tests/cron/manager_test.php index 713f44c1e2..937add252f 100644 --- a/tests/cron/manager_test.php +++ b/tests/cron/manager_test.php @@ -14,7 +14,7 @@ require_once dirname(__FILE__) . '/tasks/simple_ready.php'; require_once dirname(__FILE__) . '/tasks/simple_not_runnable.php'; require_once dirname(__FILE__) . '/tasks/simple_should_not_run.php'; -class phpbb_cron_manager_test extends PHPUnit_Framework_TestCase +class phpbb_cron_manager_test extends \phpbb_test_case { public function setUp() { diff --git a/tests/passwords/drivers_test.php b/tests/passwords/drivers_test.php index 40bb110185..df1474419b 100644 --- a/tests/passwords/drivers_test.php +++ b/tests/passwords/drivers_test.php @@ -7,7 +7,7 @@ * */ -class phpbb_passwords_helper_test extends PHPUnit_Framework_TestCase +class phpbb_passwords_helper_test extends \phpbb_test_case { public function setUp() { diff --git a/tests/passwords/manager_test.php b/tests/passwords/manager_test.php index 008f222696..f38b31e843 100644 --- a/tests/passwords/manager_test.php +++ b/tests/passwords/manager_test.php @@ -7,7 +7,7 @@ * */ -class phpbb_passwords_manager_test extends PHPUnit_Framework_TestCase +class phpbb_passwords_manager_test extends \phpbb_test_case { protected $passwords_drivers; |