com.github.mikesafonov.pitest.git.changes.CodeChange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pitest-git-changes-plugin Show documentation
Show all versions of pitest-git-changes-plugin Show documentation
Pitest plugin for mutating git changes
The newest version!
package com.github.mikesafonov.pitest.git.changes;
import lombok.Value;
@Value
public class CodeChange {
private final String className;
private final int lineFrom;
private final int lineTo;
public boolean containsLine(int line) {
return lineFrom <= line && lineTo >= line;
}
}