Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403]
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 * Unit tests for the quizaccess_securewindow plugin. 19 * 20 * @package quizaccess 21 * @subpackage securewindow 22 * @copyright 2008 The Open University 23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 24 */ 25 26 27 defined('MOODLE_INTERNAL') || die(); 28 29 global $CFG; 30 require_once($CFG->dirroot . '/mod/quiz/accessrule/securewindow/rule.php'); 31 32 33 /** 34 * Unit tests for the quizaccess_securewindow plugin. 35 * 36 * @copyright 2008 The Open University 37 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 38 */ 39 class quizaccess_securewindow_testcase extends basic_testcase { 40 public static $includecoverage = array('mod/quiz/accessrule/securewindow/rule.php'); 41 42 // Nothing very testable in this class, just test that it obeys the general access rule contact. 43 public function test_securewindow_access_rule() { 44 $quiz = new stdClass(); 45 $quiz->browsersecurity = 'securewindow'; 46 $cm = new stdClass(); 47 $cm->id = 0; 48 $quizobj = new quiz($quiz, $cm, null); 49 $rule = new quizaccess_securewindow($quizobj, 0); 50 $attempt = new stdClass(); 51 52 $this->assertFalse($rule->prevent_access()); 53 $this->assertEmpty($rule->description()); 54 $this->assertFalse($rule->prevent_new_attempt(0, $attempt)); 55 $this->assertFalse($rule->is_finished(0, $attempt)); 56 $this->assertFalse($rule->end_time($attempt)); 57 $this->assertFalse($rule->time_left_display($attempt, 0)); 58 } 59 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body