Skip to content

Commit

Permalink
Closes #5063
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 14, 2023
1 parent 3812fd7 commit 1c9837f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog-9.6.md
Expand Up @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 9.6 release series are documented in this fil
### Changed

* [#5062](https://github.com/sebastianbergmann/phpunit/issues/5062): Deprecate `expectDeprecation()`, `expectDeprecationMessage()`, `expectDeprecationMessageMatches()`, `expectError()`, `expectErrorMessage()`, `expectErrorMessageMatches()`, `expectNotice()`, `expectNoticeMessage()`, `expectNoticeMessageMatches()`, `expectWarning()`, `expectWarningMessage()`, and `expectWarningMessageMatches()`
* [#5063](https://github.com/sebastianbergmann/phpunit/issues/5063): Deprecate `withConsecutive()`
* [#5064](https://github.com/sebastianbergmann/phpunit/issues/5064): Deprecate `PHPUnit\Framework\TestCase::getMockClass()`
* [#5132](https://github.com/sebastianbergmann/phpunit/issues/5132): Deprecate `Test` suffix for abstract test case classes

Expand Down
2 changes: 2 additions & 0 deletions src/Framework/MockObject/Builder/InvocationMocker.php
Expand Up @@ -194,6 +194,8 @@ public function with(...$arguments): self
* @throws MethodParametersAlreadyConfiguredException
*
* @return $this
*
* @deprecated
*/
public function withConsecutive(...$arguments): self
{
Expand Down
2 changes: 2 additions & 0 deletions src/Framework/MockObject/Rule/ConsecutiveParameters.php
Expand Up @@ -21,6 +21,8 @@

/**
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*
* @deprecated
*/
final class ConsecutiveParameters implements ParametersRule
{
Expand Down

1 comment on commit 1c9837f

@Wirone
Copy link

@Wirone Wirone commented on 1c9837f Aug 23, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's pretty cumbersome that deprecation does not contain any migration notice. What's the proper way of doing this in PHPUnit 10?

Please sign in to comment.