wiki.techinc.nl/tests/phpunit/includes/GlobalFunctions/wfGetCallerTest.php
addshore 4bb09bbca5 @covers for all GlobalFunc tests
Also split 2 tests off into their correct test classes,
this methods are clearly no longer global functions

Change-Id: I482433f3099e72507a766e85d9576ff36e58b9ad
2013-10-24 10:00:55 +00:00

40 lines
992 B
PHP

<?php
/**
* @covers ::wfGetCaller
*/
class WfGetCallerTest extends MediaWikiTestCase {
public function testZero() {
$this->assertEquals( __METHOD__, wfGetCaller( 1 ) );
}
function callerOne() {
return wfGetCaller();
}
public function testOne() {
$this->assertEquals( 'WfGetCallerTest::testOne', self::callerOne() );
}
function intermediateFunction( $level = 2, $n = 0 ) {
if ( $n > 0 ) {
return self::intermediateFunction( $level, $n - 1 );
}
return wfGetCaller( $level );
}
public function testTwo() {
$this->assertEquals( 'WfGetCallerTest::testTwo', self::intermediateFunction() );
}
public function testN() {
$this->assertEquals( 'WfGetCallerTest::testN', self::intermediateFunction( 2, 0 ) );
$this->assertEquals( 'WfGetCallerTest::intermediateFunction', self::intermediateFunction( 1, 0 ) );
for ( $i = 0; $i < 10; $i++ ) {
$this->assertEquals( 'WfGetCallerTest::intermediateFunction', self::intermediateFunction( $i + 1, $i ) );
}
}
}