3

What options are available for me to execute mutation tests on an F# codebase?

For example, are there any frameworks available?

Scott Nimrod
  • 11,206
  • 11
  • 54
  • 118

1 Answers1

0

Depends what sort of mutations you want.

Traditional mutation testing is performed by mutating at a byte-code/IL level, which means it doesn't matter what language you used to write it.

Unfortunately, there still isn't anything even nearly as mature as PIT Java Mutation Testing. The closest you will get is Ninja Turtles, but I've had limited success with that.

James Wiseman
  • 29,946
  • 17
  • 95
  • 158