Completed
Push — MediaWikiFileUrlFinderTest ( d58bee...394f02 )
by Jeroen De
08:48
created

InitializationTest::testVersionConstantIsDefined()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace Maps\Tests\Integration;
4
5
use PHPUnit\Framework\TestCase;
6
7
/**
8
 * @licence GNU GPL v2+
9
 * @author Jeroen De Dauw < [email protected] >
10
 */
11
class InitializationTest extends TestCase {
12
13
	public function testVersionConstantIsDefined() {
14
		$this->assertInternalType( 'string', Maps_VERSION );
15
		$this->assertInternalType( 'string', SM_VERSION );
16
		$this->assertSame( Maps_VERSION, SM_VERSION );
17
		$this->assertNotEmpty( Maps_VERSION );
18
	}
19
20
}
21