Let's say I have a class that interacts with #WeatherKit in #swiftlang
I would like to test that class using mocks.
Now I have already added a protocol that mimics WK's WeatherService and added compliance to it: so now my WeatherService dependency can be mocked.
But the function I need returns a Weather modem and I can't figure out how to create Weather mock objects: the init is not public, except the (from: decoder) one.
What am I missing?