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 4611854
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T01:19:29+00:00 2026-05-22T01:19:29+00:00

I’ve been spending time to assimilate the methodologies behind writing testable code, and I

  • 0

I’ve been spending time to assimilate the methodologies behind writing testable code, and I stumbled on a great post by Misko Hevery where he explains clearly how to approach dependencies in application building, by using factories for example to load all objects and thus reduce lines of dependencies that complicate testing.

In his post he gives a minimal albeit insightful example of how he sets up application in java, shamelessly quoted below with great respect to the dude:

// Your main should look like this:
class Main {
  public static void main(String…args) {
    AppFactory factory = new AppFactory(args);
    MyApp app = factory.create();
    app.run();
    }
}

He then states:

Notice how the code is broken to three phases. Create factory, create app, run app. This makes it testable. No matter what your app, you should fallow this pattern. To got singletons to right places the Factory only creates a single instance and then passes that instance to the constructors of all classes as it calls new. See: http://misko.hevery.com/2009/03/30/collaborator-vs-the-factory/

I am not proficient in Java, but assume this can be mimicked in php, minus the main() method of course, but where would $args come from in the context of a web-app? And initialisation?

I would be very interested in seeing a minimal testable-app example in PHP, or even links to apps that one would considered test-efficient. Initialisation is what I am curious about, mostly. My purpose is not to copy-paste, but learn from what experienced OOP coders have put out.

I did rummage through the code of a few popular code libraries: Zend, Symphony but these frameworks are not runnable applications and seem “too huge too fast” for me to grasp a clear picture. Besides, some deficiencies have been pointed out in those framework regarding testing practices. Just a small example, if possible (even if not runnable) would give me a better grip on proper OOP code-layout practices when starting a small app from scratch.

  • 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-22T01:19:30+00:00Added an answer on May 22, 2026 at 1:19 am

    Sebastian Bergmann, author of PHPUnit, has a sample app to illustrate what you are asking for at GitHub:

    • https://github.com/thePHPcc/bankaccount
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.