Mutation Testing Tool for Android

android, mutation-testing, testing

Solution

You can check PIT (aka pitest). Since 0.32 it should work with Roboeletric. See this thread.

Update: As of 2016 there is a port of my PIT Gradle plugin for Android.

Problem

I'm very interested in Mutation Testing, so I've tried some tools like mujava and this tool worked well with Java code. I've also read that applying mutation testing on Android isn't trivial. So, my question is, does anyone know a tool or a way to perform mutation testing for Android code? Thank you in advance!

Original source

Related problems