We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74882cb + 3731388 commit 0bf7f99Copy full SHA for 0bf7f99
pitest/src/main/java/org/pitest/testapi/Description.java
@@ -49,7 +49,7 @@ public String getFirstTestClass() {
49
}
50
51
public String getQualifiedName() {
52
- if (this.testClass != null) {
+ if ((this.testClass != null) && !this.testClass.equals(this.getName())) {
53
return this.getFirstTestClass() + "." + this.getName();
54
} else {
55
return this.getName();
0 commit comments