Kamil-Gabaydullin

Results 2 issues of Kamil-Gabaydullin

This pr adds a `BugPattern` to recognize multiple `verifyNoInteractions()` calls in test methods. I'll leave comments throughout the pr to address questions and decisions.

### Problem When verifying that mocks didn't have interactions in tests sometimes many calls to `Mockito.verifyNoInteractions()` are used `verifyNoInteractions(mock1);` `verifyNoInteractions(mock2);` which unnecessarily pollutes the code, because this method actually accepts...

new feature