Tag: testing

304 Views

7 steps for fixing flaky tests

Written by veskoiliev

Every once in a while you might encounter a flaky unit test. I know, unit tests can't be flaky by Read More...

875 Views

How to setup Jacoco for Android…

Written by veskoiliev

is a widely used library to measure test code-coverage in JVM-based projects. Setting it up for Android applications has a Read More...

164 Views

Use custom Hamcrest Matchers to level-up…

Written by veskoiliev

Ideally automated tests should be predictable, isolated and precise, allowing you to find an issue quickly. If these conditions are Read More...

183 Views

Updating Mockito to mock Kotlin classes

Written by veskoiliev

With the exponentially increasing usage of Kotlin these days, many developers face the issue of how to test the newly Read More...

166 Views

Running Android unit / instrumentation tests…

Written by veskoiliev

Unit tests Here's a few handy commands if you want to run only a specific unit test(s). Suppose we have Read More...