aboutsummaryrefslogtreecommitdiffstats
path: root/tests/regex/all_tests.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/regex/all_tests.php')
-rw-r--r--tests/regex/all_tests.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regex/all_tests.php b/tests/regex/all_tests.php
index aeb242b78b..32cd9a3a4e 100644
--- a/tests/regex/all_tests.php
+++ b/tests/regex/all_tests.php
@@ -15,6 +15,7 @@ if (!defined('PHPUnit_MAIN_METHOD'))
require_once 'test_framework/framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
+require_once 'regex/ipv4.php';
require_once 'regex/ipv6.php';
class phpbb_regex_all_tests
@@ -28,6 +29,7 @@ class phpbb_regex_all_tests
{
$suite = new PHPUnit_Framework_TestSuite('phpBB Regular Expressions');
+ $suite->addTestSuite('phpbb_ipv4_test');
$suite->addTestSuite('phpbb_ipv6_test');
return $suite;