PHPUnit

PHPUnit is a unit testing framework for the PHP programming language. It is an instance of the xUnit architecture for unit testing frameworks that originated with SUnit and became popular with JUnit. PHPUnit was created by Sebastian Bergmann and its development is hosted on GitHub.

PHPUnit
Developer(s)Sebastian Bergmann
Initial release27 November 2001 (2001-11-27)[1]
Stable release
9.2.2 / 7 June 2020 (2020-06-07)[2]
Repository
Written inPHP
Operating systemCross-platform
TypeUnit testing framework
LicenseBSD 3 Clause
Websitephpunit.de

Purpose

PHPUnit is based on the idea that developers should be able to find mistakes in their newly committed code quickly and assert that no code regression has occurred in other parts of the code base. Much like other unit testing frameworks, PHPUnit uses assertions to verify that the behavior of the specific component - or "unit" - being tested behaves as expected.[3]

Benefits

The goal of unit testing is to isolate each part of the program and show that the individual parts are correct. A unit test provides a strict, written contract that the piece of code must satisfy. As a result, unit tests find problems early in the development cycle.

PHPUnit can output test results in a number of different formats, including JUnit XML and TestDox.

References

  1. "PHP: Revision 63330". svn.php.net.
  2. "Releases ยท sebastianbergmann/phpunit". GitHub.
  3. Assertion (computing)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.