MDL-75880 phpunit: fix all @coversDefaultClass missing @covers

Because @coversDefaultClass doesn't indicate any coverage (it's
just an alias to avoid having to write the class name in @covers),
this commit fixes all the files that were using that annotation
and missing any @covers.

Basically, replacing one by the other and done.
This commit is contained in:
Eloy Lafuente (stronk7) 2022-10-30 00:23:05 +02:00
parent fee1b8ce5f
commit d590b08dfa
17 changed files with 45 additions and 89 deletions

View file

@ -42,7 +42,7 @@ class state_test extends \advanced_testcase {
* Test the behaviour of state::export_for_template().
*
* @dataProvider state_provider
* @coversDefaultClass \core_courseformat\output\local\state
* @covers \core_courseformat\output\local\state
*
* @param string $format The course format of the course where the method will be executed.
*/