diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-09-16 01:08:18 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-01 13:38:42 +0100 |
commit | c80afb555e1264f1acf736f7bf464dc4298cdfe1 (patch) | |
tree | 579b79d71910ac6cffec28227ddc88c94bb36c92 /tests/functions_acp/all_tests.php | |
parent | d59327a9c4dfcef41ccb884f396dadeff6aa1fbd (diff) | |
download | forums-c80afb555e1264f1acf736f7bf464dc4298cdfe1.tar forums-c80afb555e1264f1acf736f7bf464dc4298cdfe1.tar.gz forums-c80afb555e1264f1acf736f7bf464dc4298cdfe1.tar.bz2 forums-c80afb555e1264f1acf736f7bf464dc4298cdfe1.tar.xz forums-c80afb555e1264f1acf736f7bf464dc4298cdfe1.zip |
[ticket/9823] Unit tests for validate_rang.
PHPBB3-9823
Diffstat (limited to 'tests/functions_acp/all_tests.php')
-rw-r--r-- | tests/functions_acp/all_tests.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/functions_acp/all_tests.php b/tests/functions_acp/all_tests.php index d5f0c86dc9..2b9c06f0ed 100644 --- a/tests/functions_acp/all_tests.php +++ b/tests/functions_acp/all_tests.php @@ -17,6 +17,7 @@ require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'functions_acp/build_select.php'; require_once 'functions_acp/h_radio.php'; +require_once 'functions_acp/validate_range.php'; class phpbb_functions_acp_all_tests { @@ -31,6 +32,7 @@ class phpbb_functions_acp_all_tests $suite->addTestSuite('phpbb_functions_acp_built_select_test'); $suite->addTestSuite('phpbb_functions_acp_h_radio_test'); + $suite->addTestSuite('phpbb_functions_acp_validate_range_test'); return $suite; } |