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
I am generating mocks and dropping them in a separate target from my unit tests (so they can be shared among multiple test targets).
The generated functions on __VerificationProxy and __StubbingProxy objects should have the same access modifier as the original function so that I can call them in my unit tests.
My current workaround is to @testable import MyMocksLib but I shouldn't need to use @testable I think.
Thanks :)
The text was updated successfully, but these errors were encountered:
I am generating mocks and dropping them in a separate target from my unit tests (so they can be shared among multiple test targets).
The generated functions on
__VerificationProxy
and__StubbingProxy
objects should have the same access modifier as the original function so that I can call them in my unit tests.My current workaround is to
@testable import MyMocksLib
but I shouldn't need to use@testable
I think.Thanks :)
The text was updated successfully, but these errors were encountered: