Day: June 29, 2015

  • PHPSpec: Mocking methods of the object being tested

    PHPSpec is very opinionated and won’t let you mock anything of an object being tested. It helps you write better code. This, however, causes issues when you are writing specs for legacy code which (usually) was not well designed. There is a way you can get around this limitation – a child class. Let’s say…