in junit-platform-engine/src/main/java/org/junit/platform/engine/discovery/FileSelector.java [95:104]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
FileSelector that = (FileSelector) o;
return Objects.equals(this.path, that.path) && Objects.equals(this.position, that.position);
}