Jump to content

How to use PHPUnit on procedural code


dennis-fedco

Recommended Posts

I have some long block of code
 

//features.php
elseif ($feature=="X") {
    //...utter mess to be refactored..
    if ($motor>0)
    {
        $a = getFeature($motor, $featureSpec);
        $b = getFlightInfo($motor, $flightNumber);
        $c = getWeather($motor);
    }
} elseif ($feature=="Y") {
  //  ...utter mess to be refactored..
} elseif ($feature=="Y") {
  //  ...utter mess to be refactored..
}

It is difficult to trace, but I can find out if features.php is included into some other files, and who calls it.  In fact this may be a tangled mess, but that being said, do I need to know all the details, or can I stick PHPUnit on a certain blocks of code and just run with it?

 

Like, say I want to test the if ($motor>0) block.  Can I do this, without knowing anything else, like where is features.php included, and so on?  If so, how do I test this?  How do I inject PHPUnit's test into normal code execution? 

Edited by dennis-fedco
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.