ILIAS  release_4-3 Revision
 All Data Structures Namespaces Files Functions Variables Groups Pages
assSingleChoiceTest.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  if (defined('ILIAS_PHPUNIT_CONTEXT'))
40  {
41  include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
42  ilUnitUtil::performInitialisation();
43  }
44  else
45  {
46  chdir( dirname( __FILE__ ) );
47  chdir('../../../');
48  }
49  }
50 
57  public static function createSampleQuestion($obj_id = null)
58  {
59  $obj_id = ($obj_id) ? $obj_id : 99999999;
60  include_once './Modules/TestQuestionPool/classes/class.assSingleChoice.php';
61  $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>');
62  $sc->addAnswer(
63  'Yes',
64  1,
65  0,
66  1
67  );
68  $sc->addAnswer(
69  'No',
70  -1,
71  0,
72  2
73  );
74  $sc->setObjId($obj_id);
75  $sc->saveToDb();
76  return $sc->getId();
77  }
78 
84  public function testCreation()
85  {
86  global $ilDB;
87 
88  include_once './Modules/TestQuestionPool/classes/class.assSingleChoice.php';
90  $this->assertGreaterThan(0, $insert_id);
91  if ($insert_id > 0)
92  {
93  $sc = new assSingleChoice();
94  $sc->loadFromDb($insert_id);
95  $this->assertEquals($sc->getPoints(),1);
96  $this->assertEquals($sc->getTitle(),"unit test single choice question");
97  $this->assertEquals($sc->getComment(),"unit test single choice question comment");
98  $this->assertEquals($sc->getAuthor(),"Helmut Schottmüller");
99  $this->assertEquals($sc->getQuestion(),"<p>is a <strong>unit test</strong> required?</p>");
100  $this->assertEquals(count($sc->getAnswers()), 2);
101  $result = $sc->delete($insert_id);
102  $this->assertEquals($result,true);
103  }
104  }
105 }