Merge "Add SPARQL client to core"
[lhc/web/wiklou.git] / tests / phpunit / includes / jobqueue / JobQueueMemoryTest.php
index 178a6a6..d5a267e 100644 (file)
@@ -6,26 +6,28 @@
  * @group JobQueue
  *
  * @licence GNU GPL v2+
- * @author Thiemo Mättig
+ * @author Thiemo Kreuz
  */
 class JobQueueMemoryTest extends PHPUnit_Framework_TestCase {
 
+       use MediaWikiCoversValidator;
+
        /**
         * @return JobQueueMemory
         */
        private function newJobQueue() {
-               return JobQueue::factory( array(
-                       'class' => 'JobQueueMemory',
+               return JobQueue::factory( [
+                       'class' => JobQueueMemory::class,
                        'wiki' => wfWikiID(),
                        'type' => 'null',
-               ) );
+               ] );
        }
 
        private function newJobSpecification() {
                return new JobSpecification(
                        'null',
-                       array( 'customParameter' => null ),
-                       array(),
+                       [ 'customParameter' => null ],
+                       [],
                        Title::newFromText( 'Custom title' )
                );
        }
@@ -52,7 +54,7 @@ class JobQueueMemoryTest extends PHPUnit_Framework_TestCase {
        public function testJobFromSpecInternal() {
                $queue = $this->newJobQueue();
                $job = $queue->jobFromSpecInternal( $this->newJobSpecification() );
-               $this->assertInstanceOf( 'Job', $job );
+               $this->assertInstanceOf( Job::class, $job );
                $this->assertSame( 'null', $job->getType() );
                $this->assertArrayHasKey( 'customParameter', $job->getParams() );
                $this->assertSame( 'Custom title', $job->getTitle()->getText() );