Antonio Pallares
Antonio Pallares
I've also faced this issue and there's a simple walkaround to mock Obj-C setters with the current implementation of Cuckoo: ``` when({ stub.shouldDisableAdIdentitySharing = false }()).thenDoNothing() ``` The problem with...
Even though OCMock verifies by default that the method has been called at least once (see Quantifiers in [OCMock docs](https://ocmock.org/reference/#verifying-interactions)), I set the default `OCMQuantifier` to `.exactly(1)` in `objcVerify` in...
I'm not sure about the default `OCMQuantifier` being `.exactly(1)`. There's no doubt it is consistent with Cuckoo's default `CallMatcher` also being `times(1)`. However, prior to this PR, `objcVerify` was actually...
That’s great! Thank you all 🙌🏼
Hi! Thank you for opening the issue @BarMalka! This is Antonio from the CoreSDK team. I tried to reproduce this scenario in a Sample app I created from scratch and...
Thanks for the quick reply @BarMalka! You're using XCFramework, which also reproduced it for me. So no more info needed. I was afraid that you were encountering the compilation issues...
Closing as the fix for this was included in the [v5.39.1](https://github.com/RevenueCat/purchases-ios/releases/tag/5.39.1) release. @BarMalka thank you again for reporting this and do let us know if you face into some related...
> Amy idea why would I get this error? I am using the latest version of the SDK 5.93.3 I'm guessing you're referring to https://github.com/RevenueCat/purchases-ios/issues/5585? I'm currently addressing that issue,...
Hi @KaiOelfke! First of all, thank you for the extremely detailed report and for bringing it to our attention. Also, thanks to @KptnTanyel for the additional context. And sorry it...
Hey @KaiOelfke, thanks again for all the digging you’ve done here, for your thorough messages, and for bearing with us while we work through this edge case. We’ve also given...