Skip to content

Latest commit

 

History

History
54 lines (32 loc) · 2.77 KB

File metadata and controls

54 lines (32 loc) · 2.77 KB

Changes in PHPUnit 5.2

All notable changes of the PHPUnit 5.2 release series are documented in this file using the Keep a CHANGELOG principles.

5.2.4 - 2016-02-11

Fixed

  • Fixed #2072: Paths in XML configuration file were not handled correctly when they have whitespace around them

5.2.3 - 2016-02-08

Removed

  • Removed the implementation of #1899 due to a bug in PHP_CodeCoverage

5.2.2 - 2016-02-07

Removed

  • Removed the implementation of #1902 due to #2042

5.2.1 - 2016-02-05

Fixed

  • Fixed #2060: Allow usage of sebastian/version in version 1

5.2.0 - 2016-02-05

Added

  • Implemented #1899: Mark a test as risky that does not execute the code it wants to test
  • Implemented #1902: Mark a test as risky when it performs an assertion on a test double
  • Implemented #1905: Add --fail-on-risky and --fail-on-warning commandline options as well as failOnRisky and failOnWarning configuration options
  • Implemented #1912: Add support for specifying the extension version with the @requires annotation
  • Implemented #1977: Add support for disabling annotations that control the ignoring of code coverage
  • Added PHPUnit_Framework_TestCase::expectException(), PHPUnit_Framework_TestCase::expectExceptionCode(), PHPUnit_Framework_TestCase::expectExceptionMessage(), and PHPUnit_Framework_TestCase::expectExceptionMessageRegExp() for programmatically setting expectations for exceptions

Changed

  • Deprecated PHPUnit_Framework_TestCase::setExpectedException()
  • Deprecated the checkForUnintentionallyCoveredCode configuration setting (use beStrictAboutCoversAnnotation instead)

Removed

  • The mapTestClassNameToCoveredClassName configuration setting has been removed