Open Horusiath opened 9 years ago
Add built-in Akka.TestKit support for F# - since it already uses FsCheck, I think we should use it as a standard supported test lib.
Proposition:
Maybe we could move whole Akka.TestKit.TestKitBase instance as a parameter injected into each test by dedicated generator. Something like:
Akka.TestKit.TestKitBase
[<Fact>] let ``some test`` testkit = ...
, where testkit is a derivative of the TestKitBase class with support for Akka.FSharp plugin.
testkit
TestKitBase
Let me know if help is needed. I don't know F# but I kinda know TestKit :)
Has there been any progress on this? Haven't had much luck trying to test my actors.
Add built-in Akka.TestKit support for F# - since it already uses FsCheck, I think we should use it as a standard supported test lib.
Proposition:
Maybe we could move whole
Akka.TestKit.TestKitBase
instance as a parameter injected into each test by dedicated generator. Something like:, where
testkit
is a derivative of theTestKitBase
class with support for Akka.FSharp plugin.