Skip to content

Instantly share code, notes, and snippets.

@gh640
Last active March 7, 2021 12:59
Show Gist options
  • Select an option

  • Save gh640/accbc58822f9b0e08ca65685d77ecdb8 to your computer and use it in GitHub Desktop.

Select an option

Save gh640/accbc58822f9b0e08ca65685d77ecdb8 to your computer and use it in GitHub Desktop.
PHPUnit アップデート対応表

PHPUnit 5.x / 6.x → 9.x の場合:

変更前 変更後 コメント
assertInternalType(something, $actual) assertIsXXX($actual)
assertContains($needle, $heystack) assertStringContainsString($needle, $heystack) 文字列の場合
assertFileNotExists() assertFileDoesNotExist()
@expectedException class expectException(targetclass::class) 変更前はアノテーションコメント
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment