diff options
| author | Nils Adermann <naderman@naderman.de> | 2008-05-04 12:54:47 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2008-05-04 12:54:47 +0000 |
| commit | 771fd3696d2f729476399d5acf92a68dd154d78d (patch) | |
| tree | c99d5ae72a817c9192b0e740d70c90518430884b /tests/all_tests.php | |
| parent | b1915b6f256b64c45d325e86f9464009909099d5 (diff) | |
| download | forums-771fd3696d2f729476399d5acf92a68dd154d78d.tar forums-771fd3696d2f729476399d5acf92a68dd154d78d.tar.gz forums-771fd3696d2f729476399d5acf92a68dd154d78d.tar.bz2 forums-771fd3696d2f729476399d5acf92a68dd154d78d.tar.xz forums-771fd3696d2f729476399d5acf92a68dd154d78d.zip | |
adding a bbcode test suite
git-svn-id: file:///svn/phpbb/trunk@8541 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'tests/all_tests.php')
| -rw-r--r-- | tests/all_tests.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/all_tests.php b/tests/all_tests.php index 407a72f4f7..f99ecf628d 100644 --- a/tests/all_tests.php +++ b/tests/all_tests.php @@ -8,8 +8,11 @@ if (!defined('PHPUnit_MAIN_METHOD')) require_once 'PHPUnit/Framework.php'; require_once 'PHPUnit/TextUI/TestRunner.php'; +require_once 'bbcode/all_tests.php'; require_once 'utf/all_tests.php'; +PHPUnit_Util_Filter::addDirectoryToFilter('./'); + class phpbb_all_tests { public static function main() @@ -21,6 +24,7 @@ class phpbb_all_tests { $suite = new PHPUnit_Framework_TestSuite('phpBB'); + $suite->addTest(phpbb_bbcode_all_tests::suite()); $suite->addTest(phpbb_utf_all_tests::suite()); return $suite; |
