We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This long term project is an attempt to convert Akka.TestKit into a fully async test kit
Need to convert TestKitBase test methods to use the new async internals.
AwaitAssert
AwaitAssert()
AwaitAssertAsync()
InternalAwaitCondition()
InternalAwaitConditionAsync()
AwaitConditions
AwaitCondition()
AwaitConditionAsync()
AwaitConditionNoThrow()
AwaitConditionNoThrowAsync()
Receive
FishForMessage()
FishForMessageAsync()
ReceiveOne()
ReceiveOneAsync()
TryReceiveOne()
TryReceiveOneAsync()
InternalTryReceiveOne()
InternalTryReceiveOneAsync()
ReceiveWhile()
ReceiveWhileAsync()
ReceiveN()
ReceiveNAsync()
InternalReceiveN()
InternalReceiveNAsync()
Expect
ExpectMsg()
ExpectMsgAsync()
ExpectTerminated()
ExpectTerminatedAsync()
InternalExpectMsg()
InternalExpectMsgAsync()
InternalExpectMsgEnvelope()
InternalExpectMsgEnvelopeAsync()
ExpectNoMsg()
ExpectNoMsgAsync()
InternalExpectNoMsg()
InternalExpectNoMsgAsync()
ExpectMsgAnyOf()
ExpectMsgAnyOfAsync()
InternalExpectMsgAnyOf()
InternalExpectMsgAnyOfAsync()
ExpectMsgAllOf()
ExpectMsgAllOfAsync()
InternalExpectMsgAllOf()
InternalExpectMsgAllOfAsync()
ExpectMsgFrom
Depends on Expect test methods
ExpectMsgFromAsync()
Within
Within()
WithinAsync()
EventFilterApplier
InternalExpect
ExpectOne
ExpectOneAsync
ExpectAsync
Mute
MuteAsync
Intercept
InterceptAsync
AwaitDone
AwaitDoneAsync
The text was updated successfully, but these errors were encountered:
Sync
Async
Arkatufus
No branches or pull requests
This long term project is an attempt to convert Akka.TestKit into a fully async test kit
Base internal change
TestKit Methods
Need to convert TestKitBase test methods to use the new async internals.
AwaitAssert
Test MethodsAwaitAssert()
should be converted to sync over async and callAwaitAssertAsync()
AwaitAssertAsync()
should use the new async internalInternalAwaitCondition()
should be converted to sync over async and callInternalAwaitConditionAsync()
InternalAwaitConditionAsync()
should use the new async internalAwaitConditions
Test MethodsAwaitCondition()
to sync over async that callsAwaitConditionAsync()
AwaitConditionNoThrow()
to sync over async that callsAwaitConditionNoThrowAsync()
InternalAwaitCondition()
to sync over async that callsInternalAwaitConditionAsync()
Receive
Test MethodsFishForMessage()
to sync over async that callsFishForMessageAsync()
FishForMessageAsync()
ReceiveOne()
to sync over async that callsReceiveOneAsync()
ReceiveOneAsync()
methodTryReceiveOne()
to sync over async that callsTryReceiveOneAsync()
TryReceiveOneAsync()
InternalTryReceiveOne()
toInternalTryReceiveOneAsync()
ReceiveWhile()
to sync over async that callsReceiveWhileAsync()
ReceiveWhileAsync()
ReceiveN()
to sync over async that callsReceiveNAsync()
ReceiveNAsync()
InternalReceiveN()
toInternalReceiveNAsync()
Expect
methodsExpectMsg()
methods to sync over async that calls their respective async methodsExpectMsgAsync()
methodsExpectTerminated()
to sync over async that callsExpectTerminatedAsync()
ExpectTerminatedAsync()
methodsInternalExpectMsg()
methods to sync over async that calls its respectiveInternalExpectMsgAsync()
InternalExpectMsgAsync()
methodsInternalExpectMsgEnvelope()
sync over async and callsInternalExpectMsgEnvelopeAsync()
InternalExpectMsgEnvelopeAsync()
methodExpectNoMsg()
methods to sync over async that calls their respective async methodsExpectNoMsgAsync()
methodsInternalExpectNoMsg()
toInternalExpectNoMsgAsync()
ExpectMsgAnyOf()
to sync over async that callsExpectMsgAnyOfAsync()
ExpectMsgAnyOfAsync()
InternalExpectMsgAnyOf()
toInternalExpectMsgAnyOfAsync()
ExpectMsgAllOf()
to sync over async that callsExpectMsgAllOfAsync()
ExpectMsgAllOfAsync()
InternalExpectMsgAllOf()
to sync over async that callsInternalExpectMsgAllOfAsync()
InternalExpectMsgAllOfAsync()
ExpectMsgFrom
Test MethodsDepends on Expect test methods
ExpectMsgFrom
to sync over async that calls their respectiveExpectMsgFromAsync()
methodsExpectMsgFromAsync()
methodsWithin
Test MethodsWithin()
methods to sync over async that calls their respectiveWithinAsync()
methodsWithinAsync()
respects timeout durations and barriersEventFilterApplier
methodsInternalExpect
ExpectOne
and derivate should do sync over async by callingExpectOneAsync
Expect
and derivate should do sync over async by callingExpectAsync
Mute
and derivate should do sync over async by callingMuteAsync
Intercept
should do sync over async by callingInterceptAsync
AwaitDone
should do sync over async by callingAwaitDoneAsync
Barrier
The text was updated successfully, but these errors were encountered: