Recent Posts

About using Test Doubles in tests

less than 1 minute read

I have just read an interesting chapter from the Software Engineering book at Google about using Test Doubles in tests.

About JUnit 5 parameterized tests

less than 1 minute read

Interesting article about JUnit 5 parameterized tests using BDD (Behaviour-Driven Development) style. It shows an example of using @CsvSource as arguments so...

Writing your own custom Java stream collector

1 minute read

One of the common operations of the Collectors API introduced in Java 8 is the possibility to collect results into a result container like List, Set or Map. ...

Jcombiner: Combinations of collections for Java

less than 1 minute read

JCombiner is a framework to generate combinations of collections for Java. I have written it in Java 11 using Java 9 modules (JPMS) and Gradle as build tool....