diff options
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/framework.php | 9 | ||||
-rw-r--r-- | tests/test_framework/phpbb_test_case.php | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/tests/test_framework/framework.php b/tests/test_framework/framework.php index 01afd4e37e..5913d20ca0 100644 --- a/tests/test_framework/framework.php +++ b/tests/test_framework/framework.php @@ -1,4 +1,11 @@ <?php +/** +* +* @package testing +* @copyright (c) 2008 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ define('IN_PHPBB', true); $phpbb_root_path = '../phpBB/'; @@ -26,4 +33,4 @@ if (version_compare(PHPUnit_Runner_Version::id(), '3.3.0', '<')) } require_once 'PHPUnit/Framework.php'; -require_once 'test_framework/phpbb_test_case.php';
\ No newline at end of file +require_once 'test_framework/phpbb_test_case.php'; diff --git a/tests/test_framework/phpbb_test_case.php b/tests/test_framework/phpbb_test_case.php index d5fdcf9889..3cf2a9d442 100644 --- a/tests/test_framework/phpbb_test_case.php +++ b/tests/test_framework/phpbb_test_case.php @@ -1,4 +1,11 @@ <?php +/** +* +* @package testing +* @copyright (c) 2008 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ class phpbb_test_case extends PHPUnit_Framework_TestCase { @@ -27,4 +34,4 @@ class phpbb_test_case extends PHPUnit_Framework_TestCase $this->expectedTriggerError = true; $this->setExpectedException($exceptionName, (string) $message, $errno); } -}
\ No newline at end of file +} |