MDL-75777 phpunit: Move tests to use correct names and ns (take#6)

Applied the following changes to various testcase classes:

- Namespaced with component[\level2-API]
- Moved to level2-API subdirectory when required.
- Fixed incorrect use statements with leading backslash.
- Remove file phpdoc block
- Remove MOODLE_INTERNAL if not needed.
- Changed code to point to global scope when needed.
- Fix some relative paths and comments here and there.
- All them passing individually.
- Complete runs passing too.
This commit is contained in:
Eloy Lafuente (stronk7)
2022-09-19 11:02:50 +02:00
parent 844abeaf5d
commit be02cc3687
49 changed files with 636 additions and 722 deletions
@@ -14,15 +14,10 @@
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* This file contains tests for the question_attempt_step_iterator class.
*
* @package moodlecore
* @subpackage questionengine
* @copyright 2009 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
namespace core_question;
use question_attempt_step;
use testable_question_attempt;
defined('MOODLE_INTERNAL') || die();
@@ -30,19 +25,20 @@ global $CFG;
require_once(__DIR__ . '/../lib.php');
require_once(__DIR__ . '/helpers.php');
/**
* Unit tests for the {@link question_attempt_step_iterator} class.
*
* @package core_question
* @category test
* @copyright 2009 The Open University
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class question_attempt_step_iterator_test extends advanced_testcase {
class questionattemptstepiterator_test extends \advanced_testcase {
private $qa;
private $iterator;
protected function setUp(): void {
$question = test_question_maker::make_question('description');
$question = \test_question_maker::make_question('description');
$this->qa = new testable_question_attempt($question, 0);
for ($i = 0; $i < 3; $i++) {
$step = new question_attempt_step(array('i' => $i));
@@ -105,7 +101,7 @@ class question_attempt_step_iterator_test extends advanced_testcase {
}
public function test_offsetGet_before_start() {
$this->expectException(moodle_exception::class);
$this->expectException(\moodle_exception::class);
$step = $this->iterator[-1];
}
@@ -120,17 +116,17 @@ class question_attempt_step_iterator_test extends advanced_testcase {
}
public function test_offsetGet_past_end() {
$this->expectException(moodle_exception::class);
$this->expectException(\moodle_exception::class);
$step = $this->iterator[3];
}
public function test_cannot_set() {
$this->expectException(moodle_exception::class);
$this->expectException(\moodle_exception::class);
$this->iterator[0] = null;
}
public function test_cannot_unset() {
$this->expectException(moodle_exception::class);
$this->expectException(\moodle_exception::class);
unset($this->iterator[2]);
}
}