Click or drag to resize
Akka.NETTestKitBase Constructor (ITestKitAssertions, ActorSystem, String)
Create a new instance of the TestKitBase class. If no system is passed in, a new system with DefaultConfig will be created.

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
protected TestKitBase(
	ITestKitAssertions assertions,
	ActorSystem system = null,
	string testActorName = null
)

Parameters

assertions
Type: Akka.TestKitITestKitAssertions
The framework-specific assertion tools.
system (Optional)
Type: Akka.ActorActorSystem
Optional: The actor system.
testActorName (Optional)
Type: SystemString
Optional: The name of the TestActor.
Exceptions
ExceptionCondition
ArgumentNullException This exception is thrown when the given assertions is undefined.
See Also