Click or drag to resize
Akka.NETTestKitBaseCreateTestActor Method
Creates a test actor with the specified name. The actor can be controlled by sending it special control messages, see TestActorSetIgnore, TestActorWatch, TestActorUnwatch, TestActorSetAutoPilot. All other messages are forwarded to the queue and can be retrieved with Receive and the ExpectMsg overloads.

The default test actor can be retrieved from the TestActor property

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public IActorRef CreateTestActor(
	string name
)

Parameters

name
Type: SystemString
The name of the new actor.

Return Value

Type: IActorRef
TBD
See Also