I was poking around GitHub a while back and in the Firefox repo, I saw badge that led me to codecov. This is an awesome little tool for generating code coverage reports. It’s simple to use and integrates well with GitHub and Travis CI. In this article, we’ll go over the… Read more »
A few weeks back I wrote an article on dependency injection and how to use it. Here I’ll cover how to use dependency injection in your unit tests. Dependency Injection I won’t talk a lot about dependency injection in this article, there’s a whole article on the subject, and I… Read more »
In this post, we’ll cover one very useful technique called dependency injection and we’ll look at some examples on to use it in your iOS project. What is it? Dependency Injection is a technique where you would inject dependencies into an object. Let’s say you’re building an app that will display… Read more »