aboutsummaryrefslogtreecommitdiffstats
path: root/tests/all_tests.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-08-20 21:12:18 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-08-20 21:36:56 +0200
commite09d6c6d7139375d8b645664bef295c82d585653 (patch)
treeadac210bb4b597ad822feb7429b61b35d97b47b8 /tests/all_tests.php
parentd53312174169f311714da389b6a36fe6a4bc8f9a (diff)
downloadforums-e09d6c6d7139375d8b645664bef295c82d585653.tar
forums-e09d6c6d7139375d8b645664bef295c82d585653.tar.gz
forums-e09d6c6d7139375d8b645664bef295c82d585653.tar.bz2
forums-e09d6c6d7139375d8b645664bef295c82d585653.tar.xz
forums-e09d6c6d7139375d8b645664bef295c82d585653.zip
[ticket/9780] Adding unit tests for gen_rand_string().
PHPBB3-9780
Diffstat (limited to 'tests/all_tests.php')
-rw-r--r--tests/all_tests.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php
index 8dc07872e8..bae7725ee7 100644
--- a/tests/all_tests.php
+++ b/tests/all_tests.php
@@ -25,6 +25,7 @@ require_once 'text_processing/all_tests.php';
require_once 'dbal/all_tests.php';
require_once 'regex/all_tests.php';
require_once 'network/all_tests.php';
+require_once 'random/all_tests.php';
// exclude the test directory from code coverage reports
PHPUnit_Util_Filter::addDirectoryToFilter('./');
@@ -48,6 +49,7 @@ class phpbb_all_tests
$suite->addTest(phpbb_dbal_all_tests::suite());
$suite->addTest(phpbb_regex_all_tests::suite());
$suite->addTest(phpbb_network_all_tests::suite());
+ $suite->addTest(phpbb_random_all_tests::suite());
return $suite;
}