Skip to content

Commit 59a866a

Browse files
author
Greg Gibeling
committed
Add filter for IntelliJ & JUnit classes
1 parent 27c999a commit 59a866a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ha-trace/src/main/java/com/g2forge/habitat/trace/EntrypointFilter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ public enum EntrypointFilter {
2727
MOCKITO(new String[] { "org.mockito." }, true),
2828
JUNIT(new String[] { "org.junit.", "junit." }, true),
2929
ECLIPSEJUNIT(new String[] { "org.eclipse.jdt.internal.junit.", "org.eclipse.jdt.internal.junit4." }, true),
30+
INTELLIJJUNIT(new String[] { "com.intellij.junit4." }, true),
3031
SUREFIRE(new String[] { "org.apache.maven.surefire." }, true);
3132

3233
public static final Set<EntrypointFilter> ALL = EnumSet.allOf(EntrypointFilter.class);

0 commit comments

Comments
 (0)