fbpx

How to use jUnit4 & jUnit5 in one project?

When you have existing test suite containing jUni4 tests and you want to migrate slowly to jUnit5 to make use of new APIs and modern test engine, you may encounter some issues – not all tests will be visible in reports.

Building assertions with Strikt

Strikt is assertion library built for Kotlin with API which allows building multi assertions and gives us readable assertion errors.

How to test a time-dependent coroutine

The issue Unit testing is the fastest way to check if some piece of our application works as we expect. But what if we have to test some features that strongly depend on time? Should we allow our tests execute for instance for few minutes? Of course we shouldn’t! In this blog post I will […]