aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2012-10-09 13:27:09 +0200
committerJoas Schilling <nickvergessen@gmx.de>2012-10-09 13:27:09 +0200
commit8267cbbd03888f0b89fbbd345b19d9b36e1190b2 (patch)
treeb2646d7d38b3d227b84ba6b8a8f2854b36f289d9
parent4a3cac0ccbfe932c65de06f6174ec345f816c4d4 (diff)
downloadforums-8267cbbd03888f0b89fbbd345b19d9b36e1190b2.tar
forums-8267cbbd03888f0b89fbbd345b19d9b36e1190b2.tar.gz
forums-8267cbbd03888f0b89fbbd345b19d9b36e1190b2.tar.bz2
forums-8267cbbd03888f0b89fbbd345b19d9b36e1190b2.tar.xz
forums-8267cbbd03888f0b89fbbd345b19d9b36e1190b2.zip
[feature/soft-delete] Forgot that file when removing the old tests
PHPBB3-9567
-rw-r--r--tests/all_tests.php58
1 files changed, 0 insertions, 58 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php
deleted file mode 100644
index 896085f581..0000000000
--- a/tests/all_tests.php
+++ /dev/null
@@ -1,58 +0,0 @@
-<?php
-/**
-*
-* @package testing
-* @copyright (c) 2008 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
-*
-*/
-
-error_reporting(E_ALL);
-
-if (!defined('PHPUnit_MAIN_METHOD'))
-{
- define('PHPUnit_MAIN_METHOD', 'phpbb_all_tests::main');
-}
-
-require_once 'test_framework/framework.php';
-require_once 'PHPUnit/TextUI/TestRunner.php';
-
-require_once 'utf/all_tests.php';
-require_once 'request/all_tests.php';
-require_once 'security/all_tests.php';
-require_once 'template/all_tests.php';
-require_once 'text_processing/all_tests.php';
-require_once 'dbal/all_tests.php';
-require_once 'class_visibility/all_tests.php';
-
-// exclude the test directory from code coverage reports
-PHPUnit_Util_Filter::addDirectoryToFilter('./');
-
-class phpbb_all_tests
-{
- public static function main()
- {
- PHPUnit_TextUI_TestRunner::run(self::suite());
- }
-
- public static function suite()
- {
- $suite = new PHPUnit_Framework_TestSuite('phpBB');
-
- $suite->addTest(phpbb_utf_all_tests::suite());
- $suite->addTest(phpbb_request_all_tests::suite());
- $suite->addTest(phpbb_security_all_tests::suite());
- $suite->addTest(phpbb_template_all_tests::suite());
- $suite->addTest(phpbb_text_processing_all_tests::suite());
- $suite->addTest(phpbb_dbal_all_tests::suite());
- $suite->addTest(phpbb_visibility_all_tests::suite());
-
- return $suite;
- }
-}
-
-if (PHPUnit_MAIN_METHOD == 'phpbb_all_tests::main')
-{
- phpbb_all_tests::main();
-}
-