Software:PHP Unit Testing Framework

From HandWiki
Revision as of 11:28, 9 February 2024 by Rtextdoc (talk | contribs) (over-write)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
PHP Unit Testing Framework
File:PHP Unit Testing Framework Logo.png
Developer(s)Ed Heal
Stable release
1.0 / April 28, 2011; 13 years ago (2011-04-28)
Written inPHP
Operating systemCross-platform
TypeTest tool
LicenseGNU General Public License
Websitesourceforge.net/projects/php-unit-test

PHP Unit Testing Framework is a unit testing framework that enables developers to discover bugs and in turn drive down the costs associated with developing PHP software.

Architecture

To remove the complications of trying to test software (that needs to be integrated) through a web server this framework uses the command line interface. This enables individual classes to be tested thoroughly before they are integrated together.

The PHP Unit Testing Framework generates reports in either XML, XHTML or ASCII.

The PHP Unit Testing Framework is one of the xUnit family of unit testing frameworks. A variety of assertions are available.

References

External links