Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7958811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:28:40+00:00 2026-06-04T04:28:40+00:00

When testing with phpunit, I want to assert a function call: Given a Class:

  • 0

When testing with phpunit, I want to assert a function call:

Given a Class:

Class TimeWrapper {
  public function time() {
    return time();
  }
}

And Its unittest:

Class TimeWrapperTest extends PHPUnit_FrameworkTestCase {
  public function testTime() {
    //Pseudocode as example of a possible solution:
    $this->assertCallsFunction("time");
  }
}

I am specifically looking for a way to test calling of global functions.

FWIW: with rspec, I use Message Expectations. I am looking to achieve something similar, or exactly similar in PHPUnit.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T04:28:40+00:00Added an answer on June 4, 2026 at 4:28 am

    If the goal is to verify that TimeWrapper calls the built-in PHP function time, you’ll need to use the runkit extension. This will allow you to replace the built-in function with your own version that will record the call. You’ll need to enable the runkit.internal_override setting in php.ini to allow you to rename internal functions.

    class TimeWrapperTest extends PHPUnit_Framework_TestCase {
        static $calledTime;
    
        function setUp() {
            self::$calledTime = false;
        }
    
        function testTimeGetsCalled() {
            $fixture = new TimeWrapper;
            try {
                runkit_function_rename('time', 'old_time');
                runkit_function_rename('new_time', 'time');
                $time = $fixture->time();
                self::assertTrue('Called time()', $calledTime);
            }
            catch (Exception $e) {
                // PHP lacks finally, but must make sure to revert time() for other test
            }
            runkit_function_rename('time', 'new_time');
            runkit_function_rename('old_time', 'time');
            if ($e) throw $e;
        }
    }
    
    function new_time() {
        TimeWrapperTest::$calledTime = true;
        return old_time();
    }
    

    If you cannot use the extension or just want to avoid that kind of trickery, you could modify TimeWrapper to allow you to override the function that gets called at runtime.

    class TimeWrapper {
        private $function;
    
        public function __construct($function = 'time') {
            $this->function = $function;
        }
    
        public function time() {
            return call_user_func($this->function);
        }
    }
    

    Use the test case above without the calls to runkit_function_rename and pass new_time to the TimeWrapper constructor. The downside here is that you’ll pay a (probably tiny) performance penalty in production on each call to TimeWrapper::time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am testing a Zend application using PHPUnit. From time to time, I want
I wrote some test and i want to generate unit testing with PHPUnit 3.6
Well, I'm new to unit-testing (with phpUnit) and just started to test one class
I'm implementing unit testing with PHPUnit on an existing codebase. I'm fairly new to
I'm trying to get familiar with PHPUnit testing within Kohana. At the moment, I
I using PHPUnit and Selenium Server to testing Yii Application, but whenever i tried
I'm still new to Unit testing, and specifically PHPUnit as the testing framework. Suppose
I'm having trouble correctly setting up unit testing in Kohana 3.2. I installed PHPUnit.
Suppose I have a class with a private property and associated public getter and
i just wonder, should one use symfony's lime or phpunit for testing? what are

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.