MediaWiki  REL1_24
DiffTest.php
Go to the documentation of this file.
00001 <?php
00002 
00009 class DiffTest extends MediaWikiTestCase {
00010 
00014     public function testGetEdits() {
00015         $obj = new Diff( array(), array() );
00016         $obj->edits = 'FooBarBaz';
00017         $this->assertEquals( 'FooBarBaz', $obj->getEdits() );
00018     }
00019 
00020 }