diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2010-09-16 13:04:12 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2011-02-01 13:38:44 +0100 |
commit | 737849bc23dc8081a82f00c78247e824b6a42daf (patch) | |
tree | b703716ca4e1051a8db95e95fffe46163badda21 /tests/functions_acp/all_tests.php | |
parent | 11e3804f97fc0ac5317d8e211c117c6572699976 (diff) | |
download | forums-737849bc23dc8081a82f00c78247e824b6a42daf.tar forums-737849bc23dc8081a82f00c78247e824b6a42daf.tar.gz forums-737849bc23dc8081a82f00c78247e824b6a42daf.tar.bz2 forums-737849bc23dc8081a82f00c78247e824b6a42daf.tar.xz forums-737849bc23dc8081a82f00c78247e824b6a42daf.zip |
[ticket/9823] Unit tests for validate_config_vars.
Fix some documentations and use the $max-var instead of the magic-number
in validate_config_vars.
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 d2895da311..64956593fd 100644 --- a/tests/functions_acp/all_tests.php +++ b/tests/functions_acp/all_tests.php @@ -18,6 +18,7 @@ require_once 'PHPUnit/TextUI/TestRunner.php'; require_once 'functions_acp/build_cfg_template.php'; require_once 'functions_acp/build_select.php'; require_once 'functions_acp/h_radio.php'; +require_once 'functions_acp/validate_config_vars.php'; require_once 'functions_acp/validate_range.php'; class phpbb_functions_acp_all_tests @@ -34,6 +35,7 @@ class phpbb_functions_acp_all_tests $suite->addTestSuite('phpbb_functions_acp_build_cfg_template_test'); $suite->addTestSuite('phpbb_functions_acp_built_select_test'); $suite->addTestSuite('phpbb_functions_acp_h_radio_test'); + $suite->addTestSuite('phpbb_functions_acp_validate_config_vars_test'); $suite->addTestSuite('phpbb_functions_acp_validate_range_test'); return $suite; |