aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13341] Change coverage to whitelist to prevent errors with temp files.Andreas Fischer2014-11-141-3/+3
| | | | | | | | | | | | | | | | | | | | b4f95deefc9d456c5a2d0f6338f6dcecc0829652 suggests that this can lead to issues with classes having the same name. However, this does not seem to be a problem with the current version of PHPUnit we are using. Despite https://phpunit.de/manual/4.1/en/code-coverage-analysis.html saying that addUncoveredFilesFromWhitelist="true" is optional, this seems to be on by default in PHPUnit 4.1.0. As a result, all files are considered for code coverage; which is what we want. processUncoveredFilesFromWhitelist is however false (by default) and as such even files that are considered for code coverage are not processed through PHP when not used in actual tests. Since it is already impossible to test multiple classes with the same name in the same test run (without process isolation), because that would already lead to "cannot redeclare class" errors, it is also impossible for "cannot redeclare class" errors to happen in test coverage. PHPBB3-13341
* [ticket/10839] Always run functional tests by defaultJoas Schilling2014-05-091-5/+4
| | | | | | | | | They are skipped anyway, if $phpbb_functional_url is not configured. If you want to run tests without functional tests, just append --exclude-group functional to your call PHPBB3-10839
* [ticket/12485] Broken tests due to absolute excludeNicofuma2014-05-031-2/+2
| | | | PHPBB3-12485
* [ticket/11668] Run lint test at the end of the test suiteIgor Wiedler2013-07-121-0/+4
| | | | | | The lint test is very slow. Running it at the end should speed up the development cycle. PHPBB3-11668
* [ticket/10492] Backporting functional testsPatrick Webster2012-04-211-0/+5
| | | | PHPBB3-10492
* [ticket/9990] Integrate utf normalizer tests into test suiteIgor Wiedler2011-01-111-2/+8
| | | | PHPBB3-9990
* [ticket/9987] Rename test files to include a _test suffixIgor Wiedler2011-01-101-1/+1
| | | | PHPBB3-9987
* [task/phpunit-xml] Only blacklist the tests directory and do not whitelist.Nils Adermann2011-01-071-9/+0
| | | | | | | | It would be ideal if we could whitelist the entire phpBB directory or at least includes, but at present that still breaks because of classes with the same name. PHPBB3-9967
* [task/phpunit-xml] Use phpunit.xml for test suiteIgor Wiedler2011-01-041-0/+34
PHPBB3-9967