Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Unit testing [closed]

Is there any EASY php testing Framework and may be simpler than simpletest and not command line based like PHPUnit ?

like image 573
AlSayed Gamal Avatar asked Nov 30 '09 12:11

AlSayed Gamal


People also ask

What is unit testing PHP?

Unit testing is a software testing process in which code blocks are checked to see whether the produced result matches the expectations. The units are tested by writing a unique test case. The unit test is generally automatic but could be implemented manually.

How do I run a PHPUnit test?

How to Run Tests in PHPUnit. You can run all the tests in a directory using the PHPUnit binary installed in your vendor folder. You can also run a single test by providing the path to the test file. You use the --verbose flag to get more information on the test status.


1 Answers

Simpletest

Actually here is a list of all the common PHP unit testing frameworks.

I think you will find that the testing frameworks themselves have little interest in developing fancy GUIs. There is however several third party tools/applications/plugins that you can checkout. I use the phpunit integration within Netbeans a lot, and it works very good.

like image 152
Peter Lindqvist Avatar answered Sep 19 '22 02:09

Peter Lindqvist