MediaWiki
1.23.2
|
Represent the result of a parser test. More...
Public Member Functions | |
__construct ( $description) | |
isSuccess () | |
Whether the test passed. More... | |
Public Attributes | |
$actual | |
Actual text rendered. More... | |
$description | |
Description of the parser test. More... | |
$expected | |
Text that was expected. More... | |
Represent the result of a parser test.
Definition at line 15 of file ParserTestResult.php.
ParserTestResult::__construct | ( | $description | ) |
$description | string A short text describing the parser test usually the text in the parser test .txt file. The description is later available using the property $description. |
Definition at line 34 of file ParserTestResult.php.
References $description.
ParserTestResult::isSuccess | ( | ) |
Whether the test passed.
Definition at line 42 of file ParserTestResult.php.
References $actual.
ParserTestResult::$actual |
Actual text rendered.
Definition at line 27 of file ParserTestResult.php.
Referenced by isSuccess().
ParserTestResult::$description |
Description of the parser test.
This is usually the text used to describe a parser test in the .txt files. It is initialized on a construction and you most probably never want to change it.
Definition at line 23 of file ParserTestResult.php.
Referenced by __construct().
ParserTestResult::$expected |
Text that was expected.
Definition at line 25 of file ParserTestResult.php.