Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[java] JUnit4TestShouldUseTestAnnotation false positive with TestNG #4634

Closed
krdabrowski opened this issue Jul 19, 2023 · 1 comment · Fixed by #4637
Closed

[java] JUnit4TestShouldUseTestAnnotation false positive with TestNG #4634

krdabrowski opened this issue Jul 19, 2023 · 1 comment · Fixed by #4637
Labels
a:false-positive PMD flags a piece of code that is not problematic
Milestone

Comments

@krdabrowski
Copy link
Contributor

krdabrowski commented Jul 19, 2023

Affects PMD Version:
7.0.0-rc3

Rule:
JUnit4TestShouldUseTestAnnotation

Description:
Rule complaints about missing @Test annotation even if it is present, but from org.testng.annotations package.
Probably TestNG org.testng.annotations.Test annotation is missing in rule definition: https://github.com/pmd/pmd/blob/3e2de671907a2b2984880e50105072fd6c26116c/pmd-java/src/main/resources/category/java/bestpractices.xml#L783C75-L783C75

Code Sample demonstrating the issue:

import org.testng.annotations.Test;
public class A {
  @Test
  void test() {}  // report warning
}

Expected outcome:
PMD reports a violation: JUnit 4 tests that execute tests should use the @Test annotation, JUnit 5 tests should use @Test, @RepeatedTest, @TestFactory, @TestTemplate or @ParameterizedTest at line 4, but that's wrong - @Test annotation is present by the test method.

@krdabrowski krdabrowski added the a:false-positive PMD flags a piece of code that is not problematic label Jul 19, 2023
krdabrowski added a commit to krdabrowski/pmd that referenced this issue Aug 4, 2023
- fix the JUnit4TestShouldUseTestAnnotation rule for TestNG,
- add test
- update changelog
@adangel adangel added this to the 7.0.0 milestone Aug 5, 2023
@adangel
Copy link
Member

adangel commented Aug 5, 2023

See also #4532

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a:false-positive PMD flags a piece of code that is not problematic
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants