Unit tests for assErrorTextTest.
More...
◆ setUp()
assErrorTextTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 15 of file assErrorTextTest.php.
References $ilCtrl, $lng, array, and defined.
17 if (
defined(
'ILIAS_PHPUNIT_CONTEXT'))
19 include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php");
20 ilUnitUtil::performInitialisation();
24 chdir( dirname( __FILE__ ) );
27 require_once
'./Services/UICore/classes/class.ilCtrl.php';
28 $ilCtrl_mock = $this->getMock(
'ilCtrl');
29 $ilCtrl_mock->expects( $this->any() )->method(
'saveParameter' );
30 $ilCtrl_mock->expects( $this->any() )->method(
'saveParameterByClass' );
32 $ilCtrl = $ilCtrl_mock;
34 require_once
'./Services/Language/classes/class.ilLanguage.php';
35 $lng_mock = $this->getMock(
'ilLanguage',
array(
'txt'),
array(),
'',
false);
40 $ilias_mock =
new stdClass();
41 $ilias_mock->account =
new stdClass();
42 $ilias_mock->account->id = 6;
43 $ilias_mock->account->fullname =
'Esther Tester';
Create styles array
The data for the language used.
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
◆ test_getErrorsFromText()
assErrorTextTest::test_getErrorsFromText |
( |
| ) |
|
Definition at line 61 of file assErrorTextTest.php.
References array.
64 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
68 Eine ((Kündigung)) kommt durch zwei gleichlautende Willenserklärungen zustande. 69 Ein Vertrag kommt durch ((drei gleichlaute)) Willenserklärungen zustande. 70 Ein Kaufvertrag an der Kasse im #Supermarkt kommt durch das legen von Ware auf das 71 Kassierband und den Kassiervorgang zustande. Dies nennt man ((konsequentes)) Handeln.';
74 'passages' =>
array( 0 =>
'Kündigung', 1=>
'drei gleichlaute', 3 =>
'konsequentes'),
75 'words' =>
array( 2 =>
'Supermarkt')
79 $actual = $instance->getErrorsFromText($errortext);
82 $this->assertEquals($expected, $actual);
Class for error text questions.
Create styles array
The data for the language used.
◆ test_getErrorsFromText_emptyArgShouldPullInternal()
assErrorTextTest::test_getErrorsFromText_emptyArgShouldPullInternal |
( |
| ) |
|
Definition at line 106 of file assErrorTextTest.php.
References array.
109 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
113 Eine ((Kündigung)) kommt durch zwei gleichlautende Willenserklärungen zustande. 114 Ein Vertrag kommt durch ((drei gleichlaute)) Willenserklärungen zustande. 115 Ein Kaufvertrag an der Kasse im #Supermarkt kommt durch das legen von Ware auf das 116 Kassierband und den Kassiervorgang zustande. Dies nennt man ((konsequentes)) Handeln.';
119 'passages' =>
array( 0 =>
'Kündigung', 1=>
'drei gleichlaute', 3 =>
'konsequentes'),
120 'words' =>
array( 2 =>
'Supermarkt')
124 $instance->setErrorText($errortext);
125 $actual = $instance->getErrorsFromText(
'');
128 $this->assertEquals($expected, $actual);
Class for error text questions.
Create styles array
The data for the language used.
◆ test_getErrorsFromText_noMatch()
assErrorTextTest::test_getErrorsFromText_noMatch |
( |
| ) |
|
Definition at line 85 of file assErrorTextTest.php.
References array.
88 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
92 Eine Kündigung)) kommt durch zwei gleichlautende (Willenserklärungen) zustande. 93 Ein Vertrag kommt durch (drei gleichlaute) Willenserklärungen zustande. 94 Ein Kaufvertrag an der Kasse im Supermarkt [kommt] durch das legen von Ware auf das 95 Kassierband und den [[Kassiervorgang]] zustande. Dies nennt man *konsequentes Handeln.';
100 $actual = $instance->getErrorsFromText($errortext);
103 $this->assertEquals($expected, $actual);
Class for error text questions.
Create styles array
The data for the language used.
◆ test_instantiateObjectSimple()
assErrorTextTest::test_instantiateObjectSimple |
( |
| ) |
|
Definition at line 49 of file assErrorTextTest.php.
52 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
58 $this->assertInstanceOf(
'assErrorText', $instance);
Class for error text questions.
◆ test_setErrordata_newError()
assErrorTextTest::test_setErrordata_newError |
( |
| ) |
|
Definition at line 131 of file assErrorTextTest.php.
References array.
134 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
137 $errordata =
array (
'passages' =>
array ( 0 =>
'drei Matrosen'),
'words' =>
array());
138 require_once
"./Modules/TestQuestionPool/classes/class.assAnswerErrorText.php";
142 $instance->setErrorData($errordata);
144 $all_errors = $instance->getErrorData();
145 $actual = $all_errors[0];
148 $this->assertEquals($expected, $actual);
Class for error text answers.
Class for error text questions.
Create styles array
The data for the language used.
◆ test_setErrordata_oldErrordataPresent()
assErrorTextTest::test_setErrordata_oldErrordataPresent |
( |
| ) |
|
Definition at line 151 of file assErrorTextTest.php.
References array.
154 require_once
'./Modules/TestQuestionPool/classes/class.assErrorText.php';
157 $errordata =
array (
'passages' =>
array ( 0 =>
'drei Matrosen'),
'words' =>
array());
158 require_once
"./Modules/TestQuestionPool/classes/class.assAnswerErrorText.php";
160 $instance->errordata = $expected;
163 $instance->setErrorData($errordata);
165 $all_errors = $instance->getErrorData();
166 $actual = $all_errors[0];
169 $this->assertEquals($expected, $actual);
Class for error text answers.
Class for error text questions.
Create styles array
The data for the language used.
◆ $backupGlobals
assErrorTextTest::$backupGlobals = FALSE |
|
protected |
The documentation for this class was generated from the following file: