MDL-81523 upgrade: Add a upgrade note sharing about the change/fix

This commit is contained in:
Eloy Lafuente (stronk7) 2024-05-28 14:42:53 +02:00
parent 674497a12c
commit 08e8b21b1f
No known key found for this signature in database
GPG Key ID: 53487A05E6228820

View File

@ -0,0 +1,14 @@
issueNumber: MDL-81523
notes:
core:
- message: >
All the setup and tear down methods of `PHPUnit` now are required to,
always, call to their parent counterparts. This is a good practice to
avoid future problems, especially when updating to PHPUnit >= 10.
This includes the following methods:
- `setUp()`
- `tearDown()`
- `setUpBeforeClass()`
- `tearDownAfterClass()`
type: fixed