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
in the test section, there is no differentiation between Mocks and Fakes. The word Mock is used for both Fakes(Implementation of classes) and Mocks(abstract classes).
Mocks should only be abstract classes, which should be mockable in tests and don`t have implemented methods.
Fakes should be minimal working implementation of classes.
In the mockito package are some samples for Mocks and Fakes
The text was updated successfully, but these errors were encountered:
Description
Hello,
in the
test
section, there is no differentiation betweenMocks
andFakes
. The wordMock
is used for bothFakes
(Implementation of classes) andMocks
(abstract classes).Mocks should only be abstract classes, which should be mockable in tests and don`t have implemented methods.
Fakes should be minimal working implementation of classes.
In the
mockito
package are some samples forMocks
andFakes
The text was updated successfully, but these errors were encountered: