summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Unit/CompatibilityModeTest.php
blob: 6ba5090ee41c6d59a39e37d10797b6f65ca62750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php

namespace SMW\Tests;

use SMW\CompatibilityMode;

/**
 * @covers \SMW\CompatibilityMode
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 2.4
 *
 * @author mwjames
 */
class CompatibilityModeTest extends \PHPUnit_Framework_TestCase {

	public function testExtensionNotEnabled() {

		$this->assertInternalType(
			'boolean',
			CompatibilityMode::extensionNotEnabled()
		);
	}

}