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

PHPUnit

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

 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() { // … } // … }