Merge "Type hint against LinkTarget in WatchedItemStore"
[lhc/web/wiklou.git] / tests / phpunit / unit / includes / filerepo / file / ForeignDBFileTest.php
1 <?php
2
3 /** @covers ForeignDBFile */
4 class ForeignDBFileTest extends \MediaWikiUnitTestCase {
5
6 public function testShouldConstructCorrectInstanceFromTitle() {
7 $title = Title::makeTitle( NS_FILE, 'Awesome_file' );
8 $repoMock = $this->createMock( LocalRepo::class );
9
10 $file = ForeignDBFile::newFromTitle( $title, $repoMock );
11
12 $this->assertInstanceOf( ForeignDBFile::class, $file );
13 }
14 }