aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/14948] Remove no longer needed or supported phpunit configsMarc Alexander2019-05-091-2/+1
| | | | PHPBB3-14948
* [ticket/14948] Adjust calls for twig and phpunit updatesMarc Alexander2019-05-091-1/+0
| | | | PHPBB3-14948
* [ticket/14670] Do not backup static attributesMarc Alexander2019-05-061-1/+1
| | | | | | | This seems to cause issues with the UI tests as the backed up static web driver does not seem to be properly initialized. PHPBB3-14670
* Merge pull request #3146 from bantu/ticket/13341Andreas Fischer2014-11-141-6/+0
|\ | | | | | | | | | | | | | | | | | | [ticket/13341] Change coverage to whitelist to prevent errors with temp ... * bantu/ticket/13341: [ticket/13341] Change coverage to whitelist to prevent errors with temp files. Conflicts: phpunit.xml.dist
| * [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/12962] Use phpVersion in phpunit.xmlDhruv2014-10-271-1/+2
| | | | | | | | PHPBB3-12962
* | [ticket/12962] Add UI tests to phpunit.xml.distDhruv2014-09-211-0/+4
| | | | | | | | PHPBB3-12962
* | [ticket/10839] Remove version compare as the php minimum requirement is 5.3.3Joas Schilling2014-05-091-1/+1
| | | | | | | | PHPBB3-10839
* | Merge branch 'ticket/10839-olympus' into ticket/10839Joas Schilling2014-05-091-1/+3
|\ \ | |/ | | | | | | | | | | | | | | | | * ticket/10839-olympus: [ticket/10839] Fix note about running slow tests and build task [ticket/10839] Removing phpunit.xml.all [ticket/10839] Always run functional tests by default Conflicts: phpunit.xml.dist
| * [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
* | Merge branch 'develop-olympus' into develop-ascraeusJoas Schilling2014-05-031-4/+5
|\ \ | |/ | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/12485] Broken tests due to absolute exclude Conflicts: .travis.yml phpunit.xml.all phpunit.xml.dist phpunit.xml.functional
| * [ticket/12485] Broken tests due to absolute excludeNicofuma2014-05-031-2/+2
| | | | | | | | PHPBB3-12485
* | [ticket/11870] No longer exclude search/fulltext_*.php from code coverage.Andreas Fischer2013-09-261-2/+0
| | | | | | | | PHPBB3-11870
* | [ticket/11698] Moving all autoloadable files to phpbb/Nils Adermann2013-07-141-2/+3
| | | | | | | | PHPBB3-11698
* | Merge branch 'develop-olympus' into developNathaniel Guse2013-07-121-0/+4
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | # By Igor Wiedler # Via Igor Wiedler (1) and Nathaniel Guse (1) * develop-olympus: [ticket/11668] Run lint test at the end of the test suite Conflicts: phpunit.xml.all phpunit.xml.dist phpunit.xml.functional
| * [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/11466] Remove old database driver files from PHPUnit excludeDavid King2013-03-261-9/+0
| | | | | | | | | | | | | | As per the ticket comments, these can simply be removed, rather than having to be renamed to the new file locations. PHPBB3-11466
* | [ticket/10719] Revert "Skip functional tests on PHP 5.2"Michael Cullum2012-03-221-4/+0
| | | | | | | | | | | | This reverts commit 9c861a0350ae67f06a38ee6efc890412a32751f4. PHPBB3-10719
* | [ticket/10414] Skip functional tests on PHP 5.2 - requires PHPUnit 3.6 on 5.2Nils Adermann2011-10-171-0/+4
| | | | | | | | | | | | | | | | | | | | Tests still execute correctly using PHPUnit 3.5 on PHP 5.3 and above. The php version limitation for a directory was added in PHPUnit 3.6. A separate test suite is required because the functional tests are in the whitelisted tests directory. The base test for functional testing is only included in bootstrap in versions 5.3 and above. PHPBB3-10414
* | [feature/functional-tests] Implementing functional test framework with goutteIgor Wiedler2011-10-141-0/+1
| | | | | | | | PHPBB3-10414
* | [task/whitelist-code-coverage] Load all of includes/ into code coverage reportNils Adermann2011-08-071-0/+17
|/ | | | PHPBB3-10314
* [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