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
-
Akka.MultiNode.TestAdapter
is a new multi node spec/test runner that is replacing the oldAkka.MultiNodeTestRunner
package; it is based purely on theXunit
test 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.TestAdapter
Microsoft.NET.Test.Sdk
To migrate to the new multi node test runner, you will need to:
Akka.MultiNodeTestRunner
package with the newAkka.MultiNode.TestAdapter
package.MultiNodeFactAttribute
from theAkka.Remote.TestKit
namespace to the newMultiNodeFactAttribute
in theAkka.MultiNode.TestAdapter
namespace. 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.MultiNodeTestFramework
is a customXunitTestFramework
implementation 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