perforce / sonar-scm-perforce

SonarQube Perforce plugin
6 stars 23 forks source link

Removed 5 unnecessary stubbings in PerforceBlameCommandTest.java #28

Open ARUS2023 opened 11 months ago

ARUS2023 commented 11 months ago

In our analysis of the project, we observed that 1) 5 stubbing are created in PerforceBlameCommandTest.testBlameSubmittedFile but never executed.

Unnecessary stubbings are stubbed method calls that were never realized during test execution. Mockito recommends to remove unnecessary stubbings (https://www.javadoc.io/doc/org.mockito/mockito-core/latest/org/mockito/exceptions/misusing/UnnecessaryStubbingException.html).

We propose below a solution to remove the unnecessary stubbings.