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  namespace mod_bigbluebuttonbn\task;
  18  
  19  use advanced_testcase;
  20  
  21  /**
  22   * Class containing the scheduled task for lti module.
  23   *
  24   * @package   mod_bigbluebuttonbn
  25   * @copyright 2023 onwards, Blindside Networks Inc
  26   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  27   * @covers \mod_bigbluebuttonbn\task\base_send_notification
  28   * @coversDefaultClass \mod_bigbluebuttonbn\task\base_send_notification
  29   */
  30  class base_send_notification_test extends advanced_testcase {
  31      /**
  32       * Check if set instance ID works correctly
  33       *
  34       */
  35      public function test_set_instance_id(): void {
  36          $this->resetAfterTest();
  37          $stub = $this->getMockForAbstractClass(
  38              base_send_notification::class,
  39              [],
  40              '',
  41              true,
  42              true,
  43              true,
  44              []
  45          );
  46  
  47          $generator = $this->getDataGenerator();
  48          $course = $generator->create_course();
  49          $instancedata = $generator->create_module('bigbluebuttonbn', [
  50              'course' => $course->id,
  51          ]);
  52  
  53          $stub->set_instance_id($instancedata->id);
  54  
  55          $rc = new \ReflectionClass(base_send_notification::class);
  56          $rcm = $rc->getMethod('get_instance');
  57          $rcm->setAccessible(true);
  58          $instance = $rcm->invoke($stub);
  59  
  60          $this->assertEquals($instancedata->id, $instance->get_instance_id());
  61      }
  62  }