garbagemule / MobArena

MobArena plugin for Minecraft
GNU General Public License v3.0
195 stars 151 forks source link

Removed 1 unnecessary stubbing in ThingManagerTest.java #779

Closed ARUS2023 closed 1 year ago

ARUS2023 commented 1 year ago

Summary

Problem

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).

Solution

The stubbing is not executed by the test firstNonNullThingIsReturned in the ThingManagerTest.java, therefore we should remove it.

Action