createMock( LinkCache::class ), $this->createMock( TitleFormatter::class ), $this->createMock( Language::class ), $this->createMock( GenderCache::class ), $this->createMock( ILoadBalancer::class ) ); $linkBatch = $factory->newLinkBatch( [ new TitleValue( NS_MAIN, 'Foo' ), new TitleValue( NS_TALK, 'Bar' ), ] ); $this->assertFalse( $linkBatch->isEmpty() ); $this->assertSame( 2, $linkBatch->getSize() ); } }