Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 4.1.x will end 13 November 2023 (12 months).
  • Bug fixes for security issues in 4.1.x will end 10 November 2025 (36 months).
  • PHP version: minimum PHP 7.4.0 Note: minimum PHP version has increased since Moodle 4.0. PHP 8.0.x is supported too.
   1  <?php
   2  // This file is part of Moodle - http://moodle.org/
   3  //
   4  // Moodle is free software: you can redistribute it and/or modify
   5  // it under the terms of the GNU General Public License as published by
   6  // the Free Software Foundation, either version 3 of the License, or
   7  // (at your option) any later version.
   8  //
   9  // Moodle is distributed in the hope that it will be useful,
  10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
  11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12  // GNU General Public License for more details.
  13  //
  14  // You should have received a copy of the GNU General Public License
  15  // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
  16  
  17  // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
  18  
  19  require_once (__DIR__ . '/../../../../question/tests/behat/behat_core_question.php');
  20  use Behat\Gherkin\Node\TableNode as TableNode;
  21  
  22  /**
  23   * Step definitions related to blocks overrides for the Classic theme.
  24   *
  25   * @package    theme_classic
  26   * @category   test
  27   * @copyright  2021 Mathew May
  28   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  29   */
  30  class behat_theme_classic_behat_core_question extends behat_core_question {
  31      /**
  32       * Creates a question in the current course questions bank with the provided data.
  33       * This step can only be used when creating question types composed by a single form.
  34       *
  35       * @param string $questiontypename The question type name
  36       * @param TableNode $questiondata The data to fill the question type form.
  37       */
  38      public function i_add_a_question_filling_the_form_with($questiontypename, TableNode $questiondata) {
  39  
  40          // Go to question bank.
  41          $this->execute("behat_general::click_link", get_string('questionbank', 'question'));
  42  
  43          // Click on create question.
  44          $this->execute('behat_forms::press_button', get_string('createnewquestion', 'question'));
  45  
  46          // Add question.
  47          $this->finish_adding_question($questiontypename, $questiondata);
  48      }
  49  }