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:
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core_files\local\archive_writer/zip_archive.
|
||||
*
|
||||
* @package core_files
|
||||
* @category test
|
||||
* @copyright 2020 Mark Nelson <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
|
||||
namespace core_files;
|
||||
|
||||
use advanced_testcase;
|
||||
@@ -31,7 +22,11 @@ use core_files\local\archive_writer\zip_writer;
|
||||
/**
|
||||
* Unit tests for \core_files\archive_writer.
|
||||
*
|
||||
* @coversDefaultClass \core_files\archive_writer
|
||||
* @package core_files
|
||||
* @category test
|
||||
* @copyright 2020 Mark Nelson <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
* @covers \core_files\archive_writer
|
||||
*/
|
||||
class archive_writer_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for \core_files\local\archive_writer\zip_writer.
|
||||
*
|
||||
* @package core_files
|
||||
* @category test
|
||||
* @copyright 2020 Mark Nelson <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
|
||||
namespace core_files\local\archive_writer;
|
||||
|
||||
use advanced_testcase;
|
||||
@@ -33,7 +24,11 @@ use ZipArchive;
|
||||
/**
|
||||
* Unit tests for \core_files\local\archive_writer\zip_writer.
|
||||
*
|
||||
* @coversDefaultClass \core_files\local\archive_writer\zip_writer
|
||||
* @package core_files
|
||||
* @category test
|
||||
* @copyright 2020 Mark Nelson <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
* @covers \core_files\local\archive_writer\zip_writer
|
||||
*/
|
||||
class zip_writer_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core_table\local\filter\filter.
|
||||
*
|
||||
* @package core_table
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core_table\local\filter;
|
||||
@@ -33,11 +24,11 @@ use InvalidArgumentException;
|
||||
/**
|
||||
* Unit tests for core_table\local\filter\filter.
|
||||
*
|
||||
* @coversDefaultClass \core_table\local\filter\filter
|
||||
* @package core_table
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @covers \core_table\local\filter\filter
|
||||
*/
|
||||
class filter_test extends advanced_testcase {
|
||||
/**
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core\content\exportable_items\exportable_filearea.
|
||||
*
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core\content\export\exportable_items;
|
||||
@@ -38,7 +29,11 @@ use stdClass;
|
||||
/**
|
||||
* Unit tests for the `exportable_filearea` export item class.
|
||||
*
|
||||
* @coversDefaultClass \core\content\exportable_items\exportable_filearea
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @covers \core\content\exportable_items\exportable_filearea
|
||||
*/
|
||||
class exportable_filearea_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core\content\exportable_items\exportable_stored_file.
|
||||
*
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core\content\export\exportable_items;
|
||||
@@ -37,7 +28,11 @@ use stored_file;
|
||||
/**
|
||||
* Unit tests for the `exportable_stored_file` export item class.
|
||||
*
|
||||
* @coversDefaultClass \core\content\exportable_items\exportable_stored_file
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @covers \core\content\exportable_items\exportable_stored_file
|
||||
*/
|
||||
class exportable_stored_file_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core\content\exportable_items\exportable_textarea.
|
||||
*
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core\content\export\exportable_items;
|
||||
@@ -38,7 +29,11 @@ use stdClass;
|
||||
/**
|
||||
* Unit tests for the `exportable_textarea` export item class.
|
||||
*
|
||||
* @coversDefaultClass \core\content\exportable_items\exportable_textarea
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Andrew Nicols <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @covers \core\content\exportable_items\exportable_textarea
|
||||
*/
|
||||
class exportable_textarea_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core\content\export\exporters\course_exporter.
|
||||
*
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Simey Lameze <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core\content\export\exporters;
|
||||
@@ -36,7 +27,11 @@ use core\content\export\zipwriter;
|
||||
/**
|
||||
* Unit tests for activity exporter.
|
||||
*
|
||||
* @coversDefaultClass \core\content\export\exporters\course_exporter
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Simey Lameze <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
* @covers \core\content\export\exporters\course_exporter
|
||||
*/
|
||||
class course_exporter_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -14,15 +14,6 @@
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for core\content\zipwriter.
|
||||
*
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Simey Lameze <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace core\content\export;
|
||||
@@ -35,7 +26,11 @@ use ZipArchive;
|
||||
/**
|
||||
* Unit tests for core\content\zipwriter.
|
||||
*
|
||||
* @coversDefaultClass \core\content\export\zipwriter
|
||||
* @package core
|
||||
* @category test
|
||||
* @copyright 2020 Simey Lameze <[email protected]>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU Public License
|
||||
* @covers \core\content\export\zipwriter
|
||||
*/
|
||||
class zipwriter_test extends advanced_testcase {
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ require_once($CFG->libdir . '/blocklib.php');
|
||||
* @category test
|
||||
* @copyright 2009 Tim Hunt
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
* @coversDefaultClass \moodle_page
|
||||
* @covers \moodle_page
|
||||
*/
|
||||
class moodle_page_test extends \advanced_testcase {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user