Skip to content

Commit

Permalink
Closes #3953
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Nov 23, 2019
1 parent f2a6099 commit 887e5c3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ChangeLog-8.4.md
Expand Up @@ -2,6 +2,12 @@

All notable changes of the PHPUnit 8.4 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [8.4.4] - 2019-MM-DD

### Fixed

* Fixed [#3953](https://github.com/sebastianbergmann/phpunit/issues/3953): Code Coverage for test executed in isolation does not work when the PHAR is used

## [8.4.3] - 2019-11-06

### Fixed
Expand Down Expand Up @@ -37,6 +43,7 @@ All notable changes of the PHPUnit 8.4 release series are documented in this fil

* The method `expectExceptionMessageRegExp()` is now deprecated. There is no behavioral change in this version of PHPUnit. Using this method will trigger a deprecation warning in PHPUnit 9 and in PHPUnit 10 it will be removed. Please use `expectExceptionMessageMatches()` instead.

[8.4.4]: https://github.com/sebastianbergmann/phpunit/compare/8.4.3...8.4
[8.4.3]: https://github.com/sebastianbergmann/phpunit/compare/8.4.2...8.4.3
[8.4.2]: https://github.com/sebastianbergmann/phpunit/compare/8.4.1...8.4.2
[8.4.1]: https://github.com/sebastianbergmann/phpunit/compare/8.4.0...8.4.1
Expand Down
4 changes: 4 additions & 0 deletions build.xml
Expand Up @@ -374,6 +374,10 @@

<copy file="${basedir}/.phpstorm.meta.php" tofile="${basedir}/build/phar-scoped/.phpstorm.meta.php"/>

<replace file="${basedir}/build/phar-scoped/phpunit/Util/PHP/Template/PhptTestCase.tpl" token="SebastianBergmann\CodeCoverage\CodeCoverage" value="PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage"/>
<replace file="${basedir}/build/phar-scoped/phpunit/Util/PHP/Template/TestCaseClass.tpl" token="SebastianBergmann\CodeCoverage\CodeCoverage" value="PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage"/>
<replace file="${basedir}/build/phar-scoped/phpunit/Util/PHP/Template/TestCaseMethod.tpl" token="SebastianBergmann\CodeCoverage\CodeCoverage" value="PHPUnit\SebastianBergmann\CodeCoverage\CodeCoverage"/>

<exec executable="${basedir}/tools/phpab" taskname="phpab" failonerror="true">
<arg value="--all" />
<arg value="--static" />
Expand Down

0 comments on commit 887e5c3

Please sign in to comment.