NoSQLUnit is a JUnit extension to make writing unit and high-level tests of systems that use NoSQL as backend easier. Visit official page for more information.

In current release instead of supporting one new engine, I focused on implementing anembedded in-memory Redis engine based on Jedis.  Read in documentation the limitations on current implementation. And of course now NoSQLUnit also supportsembedded Redis apart from Managed and Remote, you only have to registerEmbeddedRedis rule to use it.

@ClassRule

public static EmbeddedRedis embeddedRedis = newEmbeddedRedisRule().build();

Read Full Post