diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-06-11 11:14:24 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-06-11 11:14:24 +0200 |
commit | 68d15f0f14dfdc827e1169a73c194a9e30795605 (patch) | |
tree | 7d6fc46134e5b8824c790ca407704955a280c57c /tests/test_framework/phpbb_test_case_helpers.php | |
parent | 0b3f18208354aabc5b9c8901c2950e9626c3e5f3 (diff) | |
download | forums-68d15f0f14dfdc827e1169a73c194a9e30795605.tar forums-68d15f0f14dfdc827e1169a73c194a9e30795605.tar.gz forums-68d15f0f14dfdc827e1169a73c194a9e30795605.tar.bz2 forums-68d15f0f14dfdc827e1169a73c194a9e30795605.tar.xz forums-68d15f0f14dfdc827e1169a73c194a9e30795605.zip |
[ticket/11550] Move comments to correct function
PHPBB3-11550
Diffstat (limited to 'tests/test_framework/phpbb_test_case_helpers.php')
-rw-r--r-- | tests/test_framework/phpbb_test_case_helpers.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/test_framework/phpbb_test_case_helpers.php b/tests/test_framework/phpbb_test_case_helpers.php index 367bd3b142..1b08f2368f 100644 --- a/tests/test_framework/phpbb_test_case_helpers.php +++ b/tests/test_framework/phpbb_test_case_helpers.php @@ -20,6 +20,10 @@ class phpbb_test_case_helpers private $copied_files = array(); + /** + * This should only be called once before the tests are run. + * This is used to copy the fixtures to the phpBB install + */ public function copy_ext_fixtures($fixtures_dir, $fixtures) { global $phpbb_root_path; @@ -42,6 +46,10 @@ class phpbb_test_case_helpers } } + /** + * This should only be called once after the tests are run. + * This is used to remove the fixtures from the phpBB install + */ public function restore_original_ext_dir() { global $phpbb_root_path; |