aboutsummaryrefslogtreecommitdiffstats
path: root/tests/all_tests.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-06-17 18:56:52 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-06-17 18:56:52 +0200
commitcf1b0202da836801238ae6be9614df3e8ec9851b (patch)
tree23034a36bb6ce35c4450ed320e891ea9dbc09a92 /tests/all_tests.php
parentdb4ab58d92443348acbdf14ceaf2649338c2454f (diff)
parent876a6e4686bbad12c456c87a7c96bc4486bd3d17 (diff)
downloadforums-cf1b0202da836801238ae6be9614df3e8ec9851b.tar
forums-cf1b0202da836801238ae6be9614df3e8ec9851b.tar.gz
forums-cf1b0202da836801238ae6be9614df3e8ec9851b.tar.bz2
forums-cf1b0202da836801238ae6be9614df3e8ec9851b.tar.xz
forums-cf1b0202da836801238ae6be9614df3e8ec9851b.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9626] Adding tests for the URL regular expression. [ticket/9626] Add missing class prefix. [ticket/9626] A few tests for the email regular expression. [ticket/9626] More IPv6 regex tests. [ticket/9626] Adding tests for the IPv4 regular expression. [ticket/9626] Adding tests for regular expressions.
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 dbd161ddbb..938b17cf26 100644
--- a/tests/all_tests.php
+++ b/tests/all_tests.php
@@ -22,6 +22,7 @@ require_once 'template/all_tests.php';
#require_once 'bbcode/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_bbcode_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;
}