Java
Test annotation without '@Retention(RUNTIME)' annotation
Warning
New
Last modified: 03 December 2024 Reports annotations with a SOURCE
or CLASS
retention policy that are supposed to be used by JUnit 5. Such annotations are not available at runtime and most probably their retention policy should be fixed to be accessible through reflection.
Note that if the retention policy is not specified, then the default retention policy CLASS
is used.
Example:
@Testable
public @interface UnitTest {}
After the quick-fix is applied:
@Retention(RetentionPolicy.RUNTIME)
@Testable
public @interface UnitTest {}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
MetaAnnotationWithoutRuntimeRetention
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?