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