3.1.7
This is a feature release that addresses the following issue:
- Remove Moq hard-dependency on AddProbe method (#113)
Although the TestKit continues to use Moq internally for a few test doubles, this change allows you to use your own mocking library of choice for other test doubles with a callback-based AddProbe
overload.
TestKitSilo.AddProbe<T>(Func<IGrainIdentity, T> factory)
Thanks, @HuwLittle!