RowBinarySpacePartition.kt

1
package com.adventofcode.day05
2
3
4 1 1. getMinRows : replaced int return with 0 for com/adventofcode/day05/RowBinarySpacePartitionKt::getMinRows → SURVIVED
val minRows = 0
5 1 1. getMaxRows : replaced int return with 0 for com/adventofcode/day05/RowBinarySpacePartitionKt::getMaxRows → KILLED
val maxRows = 127
6
7
class RowBinarySpacePartition : BinarySpace(minRows, maxRows) {
8
9
10
    override fun toString(): String {
11 1 1. toString : replaced return value with "" for com/adventofcode/day05/RowBinarySpacePartition::toString → KILLED
        return "Row Space : " + super.toString()
12
    }
13
}
14

Mutations

4

1.1
Location : getMinRows
Killed by : none
replaced int return with 0 for com/adventofcode/day05/RowBinarySpacePartitionKt::getMinRows → SURVIVED

5

1.1
Location : getMaxRows
Killed by : com.adventofcode.day05.RowBinarySpacePartitionTest.[engine:junit-jupiter]/[class:com.adventofcode.day05.RowBinarySpacePartitionTest]/[method:shouldDisplaysNicely()]
replaced int return with 0 for com/adventofcode/day05/RowBinarySpacePartitionKt::getMaxRows → KILLED

11

1.1
Location : toString
Killed by : com.adventofcode.day05.RowBinarySpacePartitionTest.[engine:junit-jupiter]/[class:com.adventofcode.day05.RowBinarySpacePartitionTest]/[method:shouldDisplaysNicely()]
replaced return value with "" for com/adventofcode/day05/RowBinarySpacePartition::toString → KILLED

Active mutators

Tests examined


Report generated by PIT 1.6.1