Replies: 1 comment
-
|
Looks good to me @Arkatufus |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Akka.MultiNode.TestAdapteris a new multi node spec/test runner that is replacing the oldAkka.MultiNodeTestRunnerpackage; it is based purely on theXunittest framework and is compatible withdotnet test, Microsoft Visual Studio test runner, and JetBrains Rider test runner, enabling multi node tests to be run inside your IDE of choice.To use the new runner, you will need to:
Akka.MultiNode.TestAdapterMicrosoft.NET.Test.SdkTo migrate to the new multi node test runner, you will need to:
Akka.MultiNodeTestRunnerpackage with the newAkka.MultiNode.TestAdapterpackage.MultiNodeFactAttributefrom theAkka.Remote.TestKitnamespace to the newMultiNodeFactAttributein theAkka.MultiNode.TestAdapternamespace. The easiest way to do this is to add a using statement in your multi node test file:Why do we need the
TestFrameworkAttribute?Akka.MultiNode.TestAdapter.MultiNodeTestFrameworkis a customXunitTestFrameworkimplementation that ignores the Xunit Collection and Parallelization feature. This is done to make sure that each running tests are run in isolation from each other.Beta Was this translation helpful? Give feedback.
All reactions