473,778 Members | 1,804 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to test Procedural code using "PHPUnit" Framework?

18 New Member
Hi All,

I have written some PHPUnit test code by using classes.
test.php
Expand|Select|Wrap|Line Numbers
  1.  
  2. <?php
  3. require_once('PHPUnit/Framework.php');
  4. include("hello.php");
  5.  class Test1 extends  PHPUnit_Framework_TestCase
  6.  {
  7.  
  8.         function testAdd() {
  9.             $a=3;
  10.             $b=6;
  11.              $r=add($a,$b);
  12.             $this->assertNotNull($r);
  13.             $this->assertEquals($r,9);
  14.             $this->assertTrue($r>0);
  15.         }
  16. }
  17. ?>
  18.  
hello.php
Expand|Select|Wrap|Line Numbers
  1.  
  2. <?php
  3.   function add($a,$b)
  4.  {
  5.       return ($a+$b);
  6. }
  7. ?>
  8.  
Here I am able to test whether the function is returning the expected value for the given input paramaters or not.

But, How to test the code inside the function "add()".

I mean, the testing should be done to the php code (for example:- for loops, if conditions etc.) present inside the "add()" function body.

Pl. do reply me.
Sep 27 '07 #1
0 1770

Sign in to post your reply or Sign up for a free account.

Similar topics

3
2212
by: Jacob Atzen | last post by:
Howdy, For the last couple of days I've been trying to get PHPUnit2 (the one from Pear) working on my system. I have read the documentation over and over but still can't get any tests to run. I've created the following trivial piece of testcode and put it in TrueTest.php. When I try to run 'phpunit TrueTest' nothing happens, the same with 'phpunit TrueTest.php' and 'phpunit TrueTest TrueTest.php'. If I run phpunit without arguments I...
2
1785
by: tuergeist | last post by:
Hi *, I searched for best practises for php apps, especially if you're using phpunit as testframework. I found nothing interesting, so I ask you, what do you think is a best practise on directory hierarchy. I'm actually using /
1
1402
by: Harris Kosmidhs | last post by:
Hello, I recently installed eclipse with the php plugin. My question is: can eclipse be used in a medium size site where php file include others? Or when you use an MVC approach. To be more specific. I started coding a site with implementing my own simple mvc approach
0
9464
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10061
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9923
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8954
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7471
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6722
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5368
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5497
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3627
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.