"MDL-12304, fix double text"
[moodle-linuxchix.git] / grade / simpletest / testreportlib.php
blob34c4186158d019f39eaa21ebdb9ddcabd73e9b64
1 <?php // $Id$
3 ///////////////////////////////////////////////////////////////////////////
4 // //
5 // NOTICE OF COPYRIGHT //
6 // //
7 // Moodle - Modular Object-Oriented Dynamic Learning Environment //
8 // http://moodle.com //
9 // //
10 // Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com //
11 // //
12 // This program is free software; you can redistribute it and/or modify //
13 // it under the terms of the GNU General Public License as published by //
14 // the Free Software Foundation; either version 2 of the License, or //
15 // (at your option) any later version. //
16 // //
17 // This program is distributed in the hope that it will be useful, //
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
20 // GNU General Public License for more details: //
21 // //
22 // http://www.gnu.org/copyleft/gpl.html //
23 // //
24 ///////////////////////////////////////////////////////////////////////////
25 /**
26 * Unit tests for grade/report/lib.php.
28 * @author nicolas@moodle.com
29 * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
30 * @package moodlecore
34 if (!defined('MOODLE_INTERNAL')) {
35 die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
38 require_once($CFG->dirroot.'/grade/report/lib.php');
40 /**
41 * @TODO create a set of mock objects to simulate the database operations. We don't want to connect to any real sql server.
43 class gradereportlib_test extends UnitTestCase {
44 var $courseid = 1;
45 var $context = null;
46 var $report = null;
48 function setUp() {
49 $this->report = new grade_report($this->courseid, $this->context);