All notable changes of the PHPUnit 10.3 release series are documented in this file using the Keep a CHANGELOG principles.
10.3.4 - 2023-09-12
- #5509: Generate code coverage report in PHP format as first in list to avoid serializing cache data
10.3.3 - 2023-09-05
- #5484: TestDox name prettifier only supports backed enumerations
- #5487: Tests are run more than once if
<testsuites>
has overlapping<directory>
s - #5498: Hook methods are run in wrong order
10.3.2 - 2023-08-15
- #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
- #5459:
assertStringMatchesFormat()
should allowstring
type (notnon-empty-string
) for$actual
parameter
10.3.0 - 2023-08-04
- #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
- 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()
, andTestCase::createConfiguredStub()
are now static (and can be used from static data provider methods)- The internal methods
__phpunit_*()
have been removed from theStub
andMockObject
interfaces
- #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()
andMockBuilder::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()
, andTestCase::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)
- #5456: Risky Test Check for Output Buffering is performed before after-test methods are called