[java] SignatureDeclareThrowsException: false-positive with TestNG annotations #4477
Labels
a:false-positive
PMD flags a piece of code that is not problematic
Milestone
Affects PMD Version:7.0.0-rc1
Rule: SignatureDeclareThrowsException
Please provide the rule name and a link to the rule documentation:
https://docs.pmd-code.org/latest/pmd_rules_java_design.html#signaturedeclarethrowsexception
Description:
The first code sample uses the annotation
org.testng.annotations.AfterClass
, and the second one usesorg.junit.AfterClass
. The analysis results of the two cases should be equivalent because these two annotations are equivalent. However, PMD reports a warning in the first sample and no warnings in the second one. Actually, PMD should not report a warning like the first sample because it is a unit test method and throwing an exception is allowed here.Code Sample demonstrating the issue:
Case 1
Case 2
Expected outcome: PMD reports a violation at line 5 in the first class, but that's wrong. That's a false positive. PMD will report no violation if PMD sees
org.junit.AfterClass
.Running PMD through: CLI
The text was updated successfully, but these errors were encountered: