Separate MediaWiki unit and integration tests
[lhc/web/wiklou.git] / tests / phpunit / unit / includes / diff / DiffTest.php
1 <?php
2
3 /**
4 * @author Addshore
5 *
6 * @group Diff
7 */
8 class DiffTest extends \MediaWikiUnitTestCase {
9
10 /**
11 * @covers Diff::getEdits
12 */
13 public function testGetEdits() {
14 $obj = new Diff( [], [] );
15 $obj->edits = 'FooBarBaz';
16 $this->assertEquals( 'FooBarBaz', $obj->getEdits() );
17 }
18
19 }