Skip to content

Commit

Permalink
prints the app name and relative file path in the output files
Browse files Browse the repository at this point in the history
  • Loading branch information
shehan committed Oct 26, 2017
1 parent e121ffb commit 5b8dc2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/entity/MethodEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public MethodEntity(String methodName){
}

public boolean isHasTestInName(){
return methodName.toLowerCase().contains("test");
return methodName.toLowerCase().startsWith("test");
}

public boolean isHasAnnotation() {
Expand Down

0 comments on commit 5b8dc2f

Please sign in to comment.