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
{{ message }}
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
This feature would allow to record called void functions and check expectations afterwards.
Mocker mocker;
auto dependency = mocker.observe!Dependency;
// Execute
dependency.foo(5);
dependency.foo(6);
// Set expections
dependency.observe.foo(5);
// Verify// foo(6) was never observed
The text was updated successfully, but these errors were encountered:
This feature would allow to record called
void
functions and check expectations afterwards.The text was updated successfully, but these errors were encountered: