wiki.techinc.nl/tests/phpunit/includes/diff/DiffTest.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

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() );
}
}