In testing automation, test double objects that possess working business logic implementations but take shortcuts (e.g. in-memory database) are called:
AMocks
BFake Objects
CStubs
DSpies
Explanation
Fakes have functional implementations suitable for testing (e.g., lightweight in-memory storage) but are unsuited for production.

No Comments