diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-08-20 21:12:18 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-08-20 21:36:56 +0200 |
| commit | e09d6c6d7139375d8b645664bef295c82d585653 (patch) | |
| tree | adac210bb4b597ad822feb7429b61b35d97b47b8 /tests/all_tests.php | |
| parent | d53312174169f311714da389b6a36fe6a4bc8f9a (diff) | |
| download | forums-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.php | 2 |
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; } |
