MediaWiki REL1_32
SkinTest.php
Go to the documentation of this file.
1<?php
3
7 public function testGetDefaultModules() {
8 $skin = $this->getMockBuilder( Skin::class )
9 ->setMethods( [ 'outputPage', 'setupSkinUserCss' ] )
10 ->getMock();
11
12 $modules = $skin->getDefaultModules();
13 $this->assertTrue( isset( $modules['core'] ), 'core key is set by default' );
14 $this->assertTrue( isset( $modules['styles'] ), 'style key is set by default' );
15 }
16}
testGetDefaultModules()
Skin::getDefaultModules.
Definition SkinTest.php:7