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

  • Home
  • SEARCH
  • 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 6900387
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:32:24+00:00 2026-05-27T07:32:24+00:00

As the title says, I’m trying to understand how to unit test (or maybe

  • 0

As the title says, I’m trying to understand how to unit test (or maybe some other sort of test) a framework that is built similar to FuelPHP where you utilize static calls to set and access everything.

This leads to code like:

class Appointment {
  public static function updateStartTime($binds) {
     $query = "UPDATE appointment SET start_time = :start_time 
       WHERE appointment_id = :appointment_id";
     return DB::update($query, $binds);
  }
}

And you end up with controller code that looks like:

$result = Appointment::updateStartTime(array(
  'start_time' => '10:00 am', 
  'appointment_id' => 10
));

So to test the Appointment::updateStartTime method, I need to be able to provide a fake DB::update method to it, but I’m not sure where to start on that.

I know that I could just include a mock class as part of the test suite:

class DB {
  public static function update($params) { return 'success'; }
}

But this seems tedious. Is there a better way to add test coverage to my framework, while still using this coding style?

  • 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-05-27T07:32:25+00:00Added an answer on May 27, 2026 at 7:32 am

    Static Methods are Death to Testability. PHPUnit offers some mocks for static class functions but this works only under certain conditions (only possible within classes themselves, classes must use late static binding, see Stubbing and Mocking Static Methods).

    So generally I would say: Don’t test the framework, this should be done within the framework community. Instead just don’t use static classes in your own code, so you can unit-test your own code.

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

Sidebar

Related Questions

The title says it! I know that Jon Skeet was working on an implementation
Exactly what the title says...........any thoughts on other good options for relational database implementation
As the title says, I'm trying to do something like this: public abstract class
As the title says, i am trying to find the customer's who have made
As title says i have some problems with IE8 and Javascript. It's known about
The title says everything. I don't understand: why you shouldn't keep your salt a
As title says.. playerVelocity.x = playerVelocity.x *deceleration +acceleration.x *sensitivity; I don't understand what's happening
Title says it pretty much all... I'm trying to automate tests on a web
As title says. I am looking for some help with my .htaccess. I have
Title says what i'm trying to do. I can successfully generate an assembly if

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.