Unit tests for assErrorTextTest.
More...
Protected Member Functions |
| setUp () |
Detailed Description
Member Function Documentation
assErrorTextTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 35 of file assErrorTextTest.php.
{
if (defined('ILIAS_PHPUNIT_CONTEXT'))
{
include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
ilUnitUtil::performInitialisation();
}
else
{
chdir( dirname( __FILE__ ) );
chdir('../../../');
}
}
assErrorTextTest::test_getErrorsFromText |
( |
| ) |
|
Definition at line 61 of file assErrorTextTest.php.
{
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$errortext = '
Eine ((Kündigung)) kommt durch zwei gleichlautende Willenserklärungen zustande.
Ein Vertrag kommt durch ((drei gleichlaute)) Willenserklärungen zustande.
Ein Kaufvertrag an der Kasse im Supermarkt kommt durch das legen von Ware auf das
Kassierband und den Kassiervorgang zustande. Dies nennt man ((konsequentes)) Handeln.';
$expected = array( 0 => 'Kündigung', 1 => 'drei gleichlaute', 2 => 'konsequentes' );
$actual = $instance->getErrorsFromText($errortext);
$this->assertEquals($expected, $actual);
}
assErrorTextTest::test_getErrorsFromText_emptyArgShouldPullInternal |
( |
| ) |
|
Definition at line 103 of file assErrorTextTest.php.
{
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$errortext = '
Eine ((Kündigung)) kommt durch zwei gleichlautende Willenserklärungen zustande.
Ein Vertrag kommt durch ((drei gleichlaute)) Willenserklärungen zustande.
Ein Kaufvertrag an der Kasse im Supermarkt kommt durch das legen von Ware auf das
Kassierband und den Kassiervorgang zustande. Dies nennt man ((konsequentes)) Handeln.';
$expected = array( 0 => 'Kündigung', 1 => 'drei gleichlaute', 2 => 'konsequentes' );
$instance->setErrorText($errortext);
$actual = $instance->getErrorsFromText('');
$this->assertEquals($expected, $actual);
}
assErrorTextTest::test_getErrorsFromText_noMatch |
( |
| ) |
|
Definition at line 82 of file assErrorTextTest.php.
{
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$errortext = '
Eine Kündigung)) kommt durch zwei gleichlautende (Willenserklärungen) zustande.
Ein Vertrag kommt durch (drei gleichlaute) Willenserklärungen zustande.
Ein Kaufvertrag an der Kasse im Supermarkt [kommt] durch das #legen von Ware auf das
Kassierband und den [[Kassiervorgang]] zustande. Dies nennt man *konsequentes Handeln.';
$expected = array();
$actual = $instance->getErrorsFromText($errortext);
$this->assertEquals($expected, $actual);
}
assErrorTextTest::test_instantiateObjectSimple |
( |
| ) |
|
Definition at line 49 of file assErrorTextTest.php.
{
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$this->assertNotNull($instance);
}
assErrorTextTest::test_setErrordata_newError |
( |
| ) |
|
Definition at line 125 of file assErrorTextTest.php.
{
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$errordata = array ('error1');
require_once "./Modules/TestQuestionPool/classes/class.assAnswerErrorText.php";
$instance->setErrorData($errordata);
$all_errors = $instance->getErrorData();
$actual = $all_errors[0];
$this->assertEquals($expected, $actual);
}
assErrorTextTest::test_setErrordata_oldErrordataPresent |
( |
| ) |
|
Definition at line 145 of file assErrorTextTest.php.
{
$this->markTestIncomplete('No good way to prepopulate errordata to make this test meaningful.');
return;
require_once './Modules/TestQuestionPool/classes/class.assErrorText.php';
$errordata = array ('error1');
require_once "./Modules/TestQuestionPool/classes/class.assAnswerErrorText.php";
$instance->errordata = $expected;
$instance->setErrorData($errordata);
$all_errors = $instance->getErrorData();
$actual = $all_errors[0];
$this->assertEquals($expected, $actual);
}
Field Documentation
assErrorTextTest::$backupGlobals = FALSE |
|
protected |
The documentation for this class was generated from the following file: