Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are 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  /**
  18   * Fixtures for Inbound Message tests.
  19   *
  20   * @package    core_message
  21   * @copyright  2014 Andrew Nicols
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  namespace core\test;
  26  defined('MOODLE_INTERNAL') || die();
  27  
  28  /**
  29   * A base handler for unit testing.
  30   *
  31   * @copyright  2014 Andrew Nicols
  32   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  33   */
  34  class handler_base extends \core\message\inbound\handler {
  35      /**
  36       * Get the description for unit tests.
  37       */
  38      public function get_description() {
  39      }
  40  
  41      /**
  42       * Get the name for unit tests.
  43       */
  44      public function get_name() {
  45      }
  46  
  47      /**
  48       * Process a message for unit tests.
  49       *
  50       * @param stdClass $record The record to process
  51       * @param stdClass $messagedata The message data
  52       */
  53      public function process_message(\stdClass $record, \stdClass $messagedata) {
  54      }
  55  }
  56  
  57  /**
  58   * A handler for unit testing.
  59   *
  60   * @copyright  2014 Andrew Nicols
  61   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  62   */
  63  class handler_one extends handler_base {
  64  }
  65  
  66  /**
  67   * A handler for unit testing.
  68   *
  69   * @copyright  2014 Andrew Nicols
  70   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  71   */
  72  class handler_two extends handler_base {
  73  }
  74  
  75  /**
  76   * A handler for unit testing.
  77   *
  78   * @copyright  2014 Andrew Nicols
  79   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  80   */
  81  class handler_three extends handler_base {
  82  }
  83  
  84  /**
  85   * A handler for unit testing.
  86   *
  87   * @copyright  2014 Andrew Nicols
  88   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  89   */
  90  class handler_four extends handler_base {
  91  }