MediaWiki  REL1_22
ParserTestResult.php
Go to the documentation of this file.
00001 <?php
00015 class ParserTestResult {
00023     public $description;
00025     public $expected;
00027     public $actual;
00028 
00034     public function __construct( $description ) {
00035         $this->description = $description;
00036     }
00037 
00039     public function isSuccess() {
00040         return $this->expected === $this->actual;
00041     }
00042 }