Robolectric - Unit Testing Android Applications

23:54 Posted by Unknown 3 comments
What is Unit Testing? Unit Testing is the testing of the individual units of source code. Now, what is a unit in source code? It is the smallest piece of code that is testable in the entire source code. The test cases we write to test these small chunks of code are called Unit Test Cases. What...

What is RoboActivity? Guicing up Activity

This is my second RoboGuice tutorial on configuring Android applications with RoboGuice (Dependency Injection (DI) for Android). If you are not aware of what DI or RoboGuice is, you can check out here! In this tutorial, I will introduce you to configuring Android Activities with RoboGuice and...