| TestKit Constructor (ActorSystem, ITestOutputHelper) |
Create a new instance of the
TestKit for xUnit class.
If no
system is passed in, a new system
with
DefaultConfig will be created.
Namespace:
Akka.TestKit.Xunit2
Assembly:
Akka.TestKit.Xunit2 (in Akka.TestKit.Xunit2.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public TestKit(
ActorSystem system = null,
ITestOutputHelper output = null
)
new :
?system : ActorSystem *
?output : ITestOutputHelper
(* Defaults:
let _system = defaultArg system null
let _output = defaultArg output null
*)
-> TestKit
Parameters
- system (Optional)
- Type: Akka.ActorActorSystem
Optional: The actor system. - output (Optional)
- Type: ITestOutputHelper
TBD
See Also