getMethod( 'callAny' ); $callAny->setAccessible( true ); $this->assertEquals( $expectedResult, $callAny->invoke( null, $functions, $args ) ); } /** * Data provider for callAny(), which calls the first function found. */ public function provideCallAny() { return [ [ [ 'wfTestCallAny_func1', 'wfTestCallAny_func2', 'wfTestCallAny_func3' ], [ 3, 4 ], 12 ], [ [ 'wfTestCallAny_nosuchfunc1', 'wfTestCallAny_func2', 'wfTestCallAny_func3' ], [ 3, 4 ], 7 ], [ [ 'wfTestCallAny_nosuchfunc1', 'wfTestCallAny_nosuchfunc2', 'wfTestCallAny_func3' ], [ 3, 4 ], -1 ] ]; } /** * callAny() throws an exception when all functions are unavailable. * * @covers Xhprof::callAny */ public function testCallAnyNoneAvailable() { $xhprof = new ReflectionClass( Xhprof::class ); $callAny = $xhprof->getMethod( 'callAny' ); $callAny->setAccessible( true ); $this->expectException( Exception::class ); $this->expectExceptionMessage( "Neither xhprof nor tideways are installed" ); $callAny->invoke( $xhprof, [ 'wfTestCallAny_nosuchfunc1', 'wfTestCallAny_nosuchfunc2', 'wfTestCallAny_nosuchfunc3' ] ); } } /** * Test function #1 for XhprofTest::testCallAny * @param int $a * @param int $b * @return int */ function wfTestCallAny_func1( $a, $b ) { return $a * $b; } /** * Test function #2 for XhprofTest::testCallAny * @param int $a * @param int $b * @return int */ function wfTestCallAny_func2( $a, $b ) { return $a + $b; } /** * Test function #3 for XhprofTest::testCallAny * @param int $a * @param int $b * @return int */ function wfTestCallAny_func3( $a, $b ) { return $a - $b; }