PHPUnit is a unit testing software framework for software written in the PHP programming language.[1] Created by Sebastian Bergmann, PHPUnit is one of the xUnit family of frameworks that originated with Kent Beck's SUnit. PHPUnit is hosted at GitHub.[1]
Purpose [edit]
PHPUnit was created with the view that the sooner you detect your code mistakes, the quicker you can fix them. Like all Unit testing frameworks PHPUnit uses assertions to verify that behaviour of the unit of code under test behaves as expected.[2]
Benefits [edit]
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.
References [edit]
- ^ a b PHPUnit GitHub Page
- ^ Assertion (computing)
External links [edit]