aboutsummaryrefslogtreecommitdiffstats
path: root/tests/regex/all_tests.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-04-09 00:54:19 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-05-25 12:08:51 +0200
commit1c59f3dbd0e27be2057dc32344421e82122276ca (patch)
tree4cf01fdc15a090b11a0eaf064505fcbba566a3ac /tests/regex/all_tests.php
parent222173adae59af660c18ce89c606b3ee212d9a4a (diff)
downloadforums-1c59f3dbd0e27be2057dc32344421e82122276ca.tar
forums-1c59f3dbd0e27be2057dc32344421e82122276ca.tar.gz
forums-1c59f3dbd0e27be2057dc32344421e82122276ca.tar.bz2
forums-1c59f3dbd0e27be2057dc32344421e82122276ca.tar.xz
forums-1c59f3dbd0e27be2057dc32344421e82122276ca.zip
[ticket/9626] Adding tests for the IPv4 regular expression.
PHPBB3-9626
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;