diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-03 16:15:01 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2008-06-03 16:15:01 +0000 |
| commit | 7591a84c0d66a64fb0ec2b77f785f7e83088ceaf (patch) | |
| tree | 9c8441e1da458aba5b2f21add8487d355ad63c61 /tests/all_tests.php | |
| parent | 990e3cd4b286e5ae71b967b97eade303cca5cb31 (diff) | |
| download | forums-7591a84c0d66a64fb0ec2b77f785f7e83088ceaf.tar forums-7591a84c0d66a64fb0ec2b77f785f7e83088ceaf.tar.gz forums-7591a84c0d66a64fb0ec2b77f785f7e83088ceaf.tar.bz2 forums-7591a84c0d66a64fb0ec2b77f785f7e83088ceaf.tar.xz forums-7591a84c0d66a64fb0ec2b77f785f7e83088ceaf.zip | |
two new tests, added security suite and fixed utf8 tests.
git-svn-id: file:///svn/phpbb/trunk@8584 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'tests/all_tests.php')
| -rw-r--r-- | tests/all_tests.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php index 4799627602..8a871917eb 100644 --- a/tests/all_tests.php +++ b/tests/all_tests.php @@ -21,6 +21,7 @@ require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'bbcode/all_tests.php'; require_once 'utf/all_tests.php'; require_once 'request/all_tests.php'; +require_once 'security/all_tests.php'; // exclude the test directory from code coverage reports PHPUnit_Util_Filter::addDirectoryToFilter('./'); @@ -39,6 +40,7 @@ class phpbb_all_tests $suite->addTest(phpbb_bbcode_all_tests::suite()); $suite->addTest(phpbb_utf_all_tests::suite()); $suite->addTest(phpbb_request_all_tests::suite()); + $suite->addTest(phpbb_security_all_tests::suite()); return $suite; } @@ -48,4 +50,5 @@ if (PHPUnit_MAIN_METHOD == 'phpbb_all_tests::main') { phpbb_all_tests::main(); } + ?>
\ No newline at end of file |
