Upgrade to Pro — share decks privately, control downloads, hide ads and more …

PHPUnit

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

 PHPUnit

Avatar for landish

landish

May 29, 2015
Tweet

More Decks by landish

Other Decks in Programming

Transcript

  1. Why? • Code Quality • Changes Does Not Break Anything

    • Easy Contribution • Speed Up Development • Continuous Integration • Sleep At Night
  2. Example Test Case <?php class ExampleTest extends PHPUnit_Framework_TestCase { //

    … public function testExample() { // … } // … }