wiki.techinc.nl/tests/parser/ParserTestResult.php
Timo Tijhof b4bac102b6 tests: Clean up file headers
* Remove redundant @licence/@license from test suite files.
  They already have full licence headers. And @licence raises a
  warning in Doxygen.

* Fix weird messes of comments inside comments and other things.

Change-Id: I38da8ca76330f72b8dc22b0ecf1ea69d5ea55ede
2015-04-01 00:17:12 +01:00

44 lines
998 B
PHP

<?php
/**
* @file
*
* @copyright Copyright © 2013, Antoine Musso
* @copyright Copyright © 2013, Wikimedia Foundation Inc.
*/
/**
* Represent the result of a parser test.
*
* @since 1.22
*/
class ParserTestResult {
/**
* 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.
*/
public $description;
/** Text that was expected */
public $expected;
/** Actual text rendered */
public $actual;
/**
* @param string $description 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.
*/
public function __construct( $description ) {
$this->description = $description;
}
/**
* Whether the test passed
* @return bool
*/
public function isSuccess() {
return $this->expected === $this->actual;
}
}