ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ilassSingleChoiceTest.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2006 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
34 {
35  protected $backupGlobals = FALSE;
36 
37  protected function setUp()
38  {
39  include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
41  }
42 
49  public static function createSampleQuestion($obj_id = null)
50  {
51  $obj_id = ($obj_id) ? $obj_id : 99999999;
52  include_once './Modules/TestQuestionPool/classes/class.assSingleChoice.php';
53  $sc = new assSingleChoice('unit test single choice question', 'unit test single choice question comment', 'Helmut Schottmüller', -1, '<p>is a <strong>unit test</strong> required?</p>');
54  $sc->addAnswer(
55  'Yes',
56  1,
57  0,
58  1
59  );
60  $sc->addAnswer(
61  'No',
62  -1,
63  0,
64  2
65  );
66  $sc->setObjId($obj_id);
67  $sc->saveToDb();
68  return $sc->getId();
69  }
70 
76  public function testCreation()
77  {
78  global $ilDB;
79 
80  include_once './Modules/TestQuestionPool/classes/class.assSingleChoice.php';
82  $this->assertGreaterThan(0, $insert_id);
83  if ($insert_id > 0)
84  {
85  $sc = new assSingleChoice();
86  $sc->loadFromDb($insert_id);
87  $this->assertEquals($sc->getPoints(),1);
88  $this->assertEquals($sc->getTitle(),"unit test single choice question");
89  $this->assertEquals($sc->getComment(),"unit test single choice question comment");
90  $this->assertEquals($sc->getAuthor(),"Helmut Schottmüller");
91  $this->assertEquals($sc->getQuestion(),"<p>is a <strong>unit test</strong> required?</p>");
92  $this->assertEquals(count($sc->getAnswers()), 2);
93  $result = $sc->delete($insert_id);
94  $this->assertEquals($result,true);
95  }
96  }
97 }
98 ?>