This seems to be a recurring theme in my recent posts but I think it’s an important one: don’t settle for writing boiler plate code.…
World traveller, app maker, code blogger.
This seems to be a recurring theme in my recent posts but I think it’s an important one: don’t settle for writing boiler plate code.…
If you’re finding TDD is slowing you down then this article will help you turn the tables and make TDD quicker. Let’s remind ourselves of…
Don’t you hate it when you need to rename something in lots of places? AppCode has great refactoring tools to help us rename properties, classes…
Until Swift supports read and write introspection we are forced to manually write our mocks. Mocks are an essential part of testing; and where we…
Creating handmade mocks is a common task many of us have to suffer through in Swift. The last thing we want to do is write is…
Motivation Test doubles (sometimes referred to as mocks) are essential when writing unit tests. In Objective-C we had tools such as OCMock to ease this…