Click or drag to resize
Akka.NETTestKitBase.ExpectTerminated Method
Receive one message from the test actor and assert that it is the Terminated message of the given ActorRef. Wait time is bounded by the given duration, if specified; otherwise wait time is bounded by remaining time for execution of the innermost enclosing 'within' block, if inside a 'within' block; otherwise by the config value "akka.test.single-expect-default".

Namespace:  Akka.TestKit
Assembly:  Akka.TestKit (in Akka.TestKit.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax
public Terminated ExpectTerminated(
	IActorRef target,
	Nullable<TimeSpan> timeout = null,
	string hint = null
)

Parameters

target
Type: Akka.Actor.IActorRef
TBD
timeout (Optional)
Type: System.Nullable<TimeSpan>
TBD
hint (Optional)
Type: System.String
TBD

Return Value

Type: Terminated
TBD
See Also