1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9626] Adding tests for the URL regular expression.

PHPBB3-9626
This commit is contained in:
Andreas Fischer
2010-05-19 16:56:45 +02:00
parent 646b16f5db
commit aaaa4f9abe
2 changed files with 36 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ require_once 'PHPUnit/TextUI/TestRunner.php';
require_once 'regex/email.php';
require_once 'regex/ipv4.php';
require_once 'regex/ipv6.php';
require_once 'regex/url.php';
class phpbb_regex_all_tests
{
@@ -33,6 +34,7 @@ class phpbb_regex_all_tests
$suite->addTestSuite('phpbb_regex_email_test');
$suite->addTestSuite('phpbb_regex_ipv4_test');
$suite->addTestSuite('phpbb_regex_ipv6_test');
$suite->addTestSuite('phpbb_regex_url_test');
return $suite;
}