aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_test_case.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/15938] Update classes in backupStaticAttributesBlacklistMarc Alexander2019-05-091-4/+4
| | | | PHPBB3-15938
* [ticket/14948] Adjust calls for twig and phpunit updatesMarc Alexander2019-05-091-1/+3
| | | | PHPBB3-14948
* [ticket/13241] Sleep for 1 second when posting twice in the same secondJoas Schilling2014-10-291-1/+1
| | | | PHPBB3-13241
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [ticket/9916] Updating License in the headerUnknown2012-01-021-1/+1
| | | | PHPBB3-9916
* [task/phpunit-xml] Manually blacklisting a few PHPUnit classes from backups.Nils Adermann2011-01-071-0/+15
| | | | | | | | | | | The blacklisting of these static variables is necessary because code coverage will otherwise consume too much memory. The problem did not exist in earlier PHPUnit versions because all classes beginning with PHPUnit are automatically blacklisted, and code coverage as well as a few other internal classes were still internal parts of PHPunit. These were now moved to PHP_ namespace, causing the problem with backupStaticAttributes. PHPBB3-9967
* [task/mssql-db-tests] Use a simple getter for test case helpers.Nils Adermann2010-10-251-3/+4
| | | | | | | | Calling initialisation to then use the member directly seems more complicated than just having a method that returns the instance or creates it if necessary. PHPBB3-9868
* [feature/dbal-tests] Added database test & refactored test frameworkJoas Schilling2010-03-261-20/+10
| | | | | | There is now a phpbb_database_test_case which can be used as a base class for tests that require database access. You have to set up a test_config.php file in your tests/ directory containing host, user, pass etc. Extra test functionality has been moved to phpbb_test_case_helpers to provide the same functionality in database tests and regular tests without duplicating the code. This is achieved through delegation of method calls.
* [develop-olympus] Backported 3.1 unit tests to 3.0.Nils Adermann2010-03-101-0/+37
Start adding unit tests for bugs you fix! Tests for anything are welcome really. We have to work on these a lot.