* 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
19 lines
303 B
PHP
19 lines
303 B
PHP
<?php
|
|
|
|
/**
|
|
* @author Adam Shorland
|
|
*
|
|
* @group Diff
|
|
*/
|
|
class DiffTest extends MediaWikiTestCase {
|
|
|
|
/**
|
|
* @covers Diff::getEdits
|
|
*/
|
|
public function testGetEdits() {
|
|
$obj = new Diff( array(), array() );
|
|
$obj->edits = 'FooBarBaz';
|
|
$this->assertEquals( 'FooBarBaz', $obj->getEdits() );
|
|
}
|
|
|
|
}
|