Skip to content

Instantly share code, notes, and snippets.

@okaminu
Created October 2, 2020 10:55
Show Gist options
  • Save okaminu/d789c9947e5926d9975f8d497aa140d1 to your computer and use it in GitHub Desktop.
Save okaminu/d789c9947e5926d9975f8d497aa140d1 to your computer and use it in GitHub Desktop.
class Numbers {
def greaterThan(a: Int, b: Int): Boolean = {
a > b
// Mutant 1: a >= b
// Mutant 2: a < b
// Mutant 3: a == b
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment