Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
19 lines
288 B
PHP
19 lines
288 B
PHP
<?php
|
|
|
|
/**
|
|
* @author Addshore
|
|
*
|
|
* @group Diff
|
|
*/
|
|
class DiffTest extends MediaWikiTestCase {
|
|
|
|
/**
|
|
* @covers Diff::getEdits
|
|
*/
|
|
public function testGetEdits() {
|
|
$obj = new Diff( [], [] );
|
|
$obj->edits = 'FooBarBaz';
|
|
$this->assertEquals( 'FooBarBaz', $obj->getEdits() );
|
|
}
|
|
|
|
}
|