Saffrongeek’s Diarylog
…..memoirs moments opened…

Posts Tagged ‘Apache’

How to: Setting, Using and Running Test with PHPUnit

July 30, 2009

[Warning: require_once(PHPUnit2/Framework/TestCase.php): failed to open stream: No such file or directory in... ]
How I got it?
I wanted to check my phpunit installed and try it for my testing. I took a sample code as below:
<?php
require_once ‘PHPUnit2/Framework/TestCase.php’;
class ArrayTest extends PHPUnit_Framework_TestCase {
}
?>
Then I opened up a terminal and keyed in the below command:
saffrongeek@saffrongeek-laptop:~/Projects/sao2crmdr$ phpunit phpunitdemo
I got the [...]