Testing
-
Software Development
Legacy Code To Testable Code #1: Renaming
This post is part of the “Legacy Code to Testable Code” series. In the series we’ll talk about making refactoring…
Read More » -
Core Java
JUnit in a Nutshell: Yet Another JUnit Tutorial
Why Another JUnit Tutorial? JUnit seems to be the most popular testing tool for developers within the Java world. So…
Read More » -
Core Java
Tips for (unit testing) JavaBeans
If you’re writing Java code chances are you’re writing at least a few classes that adhere to the JavaBean conventions,…
Read More » -
Android Core
How to run junit tests inside the android project
Hi there! Today i’m gonna show you how to create and run junit tests inside your android project without creating…
Read More » -
Core Java
Common Mistakes Junior Developers Do When Writing Unit Tests
It’s been 10 years since I wrote my first unit test. Since then, I can’t remember how many thousands of…
Read More » -
Groovy
Property-based testing with Spock
Property based testing is an alternative approach to testing, complementing example based testing. The latter is what we’ve been doing…
Read More » -
Software Development
Load-Testing Guidelines
Load-testing is not trivial. It’s often not just about downloading JMeter or Gatling, recording some scenarios and then running them.…
Read More » -
Core Java
Some more unit test tips
In my previous post I showed some tips on unit testing JavaBeans. In this blog entry I will give two…
Read More » -
Core Java
Mockito 101
Mockito is a mocking framework that lets you write beatiful tests with clean and simple API. It biases toward minimal…
Read More »