You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the Events classes are declared final and do not implement an interface at the same time. This makes testing own EventListeners impossible as the Event objects can not be mocked. Solution would either be to not make those classes final or (better) to use interfaces which can then be used for mocking.
The text was updated successfully, but these errors were encountered:
All the Events classes are declared final and do not implement an interface at the same time. This makes testing own EventListeners impossible as the Event objects can not be mocked. Solution would either be to not make those classes final or (better) to use interfaces which can then be used for mocking.
The text was updated successfully, but these errors were encountered: