mirror of
https://github.com/tonydamage/nux-env.git
synced 2025-12-11 13:24:28 +01:00
- Not report non-Unit testing issues for unit tests. Signed-off-by: Tony Tkacik <tonydamage@gmail.com>
13 lines
336 B
XML
13 lines
336 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<FindBugsFilter>
|
|
<Match>
|
|
<!-- the Match filter is equivalent to a logical 'And' -->
|
|
|
|
<Class name="~.*\.*Test" />
|
|
<!-- test classes are suffixed by 'Test' -->
|
|
|
|
<Not>
|
|
<Bug code="IJU" /> <!-- 'IJU' is the code for bugs related to JUnit test code -->
|
|
</Not>
|
|
</Match>
|
|
</FindBugsFilter>
|