diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2010-04-09 00:39:12 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2010-05-25 12:08:51 +0200 |
| commit | 222173adae59af660c18ce89c606b3ee212d9a4a (patch) | |
| tree | 979aa15ec849a7565854f44b5fb733626c20a41a /tests/all_tests.php | |
| parent | 6d7e30ae995fe0791c2bced0974b0445fa769ee9 (diff) | |
| download | forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.gz forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.bz2 forums-222173adae59af660c18ce89c606b3ee212d9a4a.tar.xz forums-222173adae59af660c18ce89c606b3ee212d9a4a.zip | |
[ticket/9626] Adding tests for regular expressions.
Adding tests for the IPv6 regular expression returned by get_preg_expression()
PHPBB3-9626
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 e693427809..7894d688ee 100644 --- a/tests/all_tests.php +++ b/tests/all_tests.php @@ -23,6 +23,7 @@ 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 'regex/all_tests.php'; // exclude the test directory from code coverage reports PHPUnit_Util_Filter::addDirectoryToFilter('./'); @@ -44,6 +45,7 @@ class phpbb_all_tests $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_regex_all_tests::suite()); return $suite; } |
