1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 00:37:42 +02:00

[ticket/9746] Adding tests for phpbb_ip_normalise().

PHPBB3-9746
This commit is contained in:
Andreas Fischer
2010-07-21 18:59:02 +02:00
parent 979158f0a2
commit dc7e3550ab
2 changed files with 67 additions and 0 deletions

View File

@@ -16,6 +16,7 @@ require_once 'test_framework/framework.php';
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once 'network/checkdnsrr.php';
require_once 'network/ip_normalise.php';
class phpbb_network_all_tests
{
@@ -29,6 +30,7 @@ class phpbb_network_all_tests
$suite = new PHPUnit_Framework_TestSuite('phpBB Network Functions');
$suite->addTestSuite('phpbb_network_checkdnsrr_test');
$suite->addTestSuite('phpbb_network_ip_normalise_test');
return $suite;
}