MediaWiki  REL1_24
MediaWikiVersionFetcherTest.php
Go to the documentation of this file.
00001 <?php
00002 
00014 class MediaWikiVersionFetcherTest extends PHPUnit_Framework_TestCase {
00015 
00016     public function testReturnsResult() {
00017         $versionFetcher = new MediaWikiVersionFetcher();
00018         $this->assertInternalType( 'string', $versionFetcher->fetchVersion() );
00019     }
00020 
00021 }