Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 4.64 KB

ChangeLog-10.3.md

File metadata and controls

51 lines (34 loc) · 4.64 KB

Changes in PHPUnit 10.3

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

10.3.2 - 2023-08-15

Deprecated

  • #5423: TestCase::throwException() is no longer deprecated
  • #5425: InvocationMocker::willReturnOnConsecutiveCalls() is no longer deprecated
  • #5444: MockBuilder::setMockClassName() is no longer deprecated

10.3.1 - 2023-08-04

Fixed

  • #5459: assertStringMatchesFormat() should allow string type (not non-empty-string) for $actual parameter

10.3.0 - 2023-08-04

Added

  • #5368: Control when PHP's garbage collector is triggered
  • #5428: Attribute #[WithoutErrorHandler] to disable PHPUnit's error handler for a test method
  • #5431: Add more garbage collector details to event telemetry

Changed

  • Errors (E_USER_ERROR), deprecations (E_DEPRECATED, E_USER_DEPRECATED), notices (E_STRICT, E_NOTICE, E_USER_NOTICE), and warnings (E_WARNING, E_USER_WARNINGS) are now displayed grouped by issue
  • When a test case class inherits test methods from a parent class then, by default (when no test reordering is requested), the test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree) are now run first
  • Invocation count expectation failure messages have been slightly improved
  • When a test case class inherits test methods from a parent class then the TestDox output for such a test case class now starts with test methods from the class that is highest in the inheritance tree (instead of the class that is lowest in the inheritance tree)
  • TestCase::createStub(), TestCase::createStubForIntersectionOfInterfaces(), and TestCase::createConfiguredStub() are now static (and can be used from static data provider methods)
  • The internal methods __phpunit_*() have been removed from the Stub and MockObject interfaces

Deprecated

  • #5214: Deprecate TestCase::iniSet() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5216: Deprecate TestCase::setLocale() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5421: Deprecate MockBuilder::enableAutoReturnValueGeneration() and MockBuilder::disableAutoReturnValueGeneration() (these methods only have a @deprecated annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)
  • #5423: Deprecate TestCase::returnValue(), TestCase::onConsecutiveCalls(), TestCase::returnValueMap(), TestCase::returnArgument(), TestCase::returnSelf(), TestCase::returnCallback(), and TestCase::throwException() (these methods only have a @deprecated annotation for now; using these methods will trigger a deprecation warning in PHPUnit 11; these methods will be removed in PHPUnit 12)
  • #5425: Deprecate InvocationMocker::willReturnOnConsecutiveCalls() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)
  • #5444: Deprecate MockBuilder::setMockClassName() (this method only has a @deprecated annotation for now; using this method will trigger a deprecation warning in PHPUnit 11; this method will be removed in PHPUnit 12)

Fixed

  • #5456: Risky Test Check for Output Buffering is performed before after-test methods are called