Akka.MultiNode.TestAdapter
1.1.0-beta2
Prefix Reserved
See the version list below for details.
dotnet add package Akka.MultiNode.TestAdapter --version 1.1.0-beta2
NuGet\Install-Package Akka.MultiNode.TestAdapter -Version 1.1.0-beta2
<PackageReference Include="Akka.MultiNode.TestAdapter" Version="1.1.0-beta2" />
paket add Akka.MultiNode.TestAdapter --version 1.1.0-beta2
#r "nuget: Akka.MultiNode.TestAdapter, 1.1.0-beta2"
// Install Akka.MultiNode.TestAdapter as a Cake Addin #addin nuget:?package=Akka.MultiNode.TestAdapter&version=1.1.0-beta2&prerelease // Install Akka.MultiNode.TestAdapter as a Cake Tool #tool nuget:?package=Akka.MultiNode.TestAdapter&version=1.1.0-beta2&prerelease
Visual Studio 2017 15.9+ Test Explorer runner for the Akka.NET MultiNode tests
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Akka.Cluster.TestKit (>= 1.4.31)
- System.CodeDom (>= 5.0.0)
- System.Runtime.Loader (>= 4.3.0)
- TeamCity.ServiceMessages (>= 3.0.13)
- xunit.runner.utility (>= 2.4.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Akka.MultiNode.TestAdapter:
Repository | Stars |
---|---|
akkadotnet/akka.net
Canonical actor model implementation for .NET with local + distributed actors in C# and F#.
|
Version | Downloads | Last updated |
---|---|---|
1.5.28 | 163 | 9/5/2024 |
1.5.25 | 1,276 | 6/17/2024 |
1.5.24 | 105 | 6/7/2024 |
1.5.19 | 4,417 | 4/20/2024 |
1.5.18 | 255 | 4/12/2024 |
1.5.13 | 8,339 | 9/19/2023 |
1.5.8 | 2,459 | 6/16/2023 |
1.5.6 | 838 | 5/16/2023 |
1.5.0 | 6,299 | 3/2/2023 |
1.5.0-beta1 | 2,072 | 2/21/2023 |
1.1.1 | 17,092 | 4/21/2022 |
1.1.0 | 6,207 | 1/7/2022 |
1.1.0-beta2 | 330 | 12/23/2021 |
1.1.0-beta1 | 267 | 11/8/2021 |
1.0.0 | 6,043 | 10/20/2021 |
1.0.0-beta2 | 461 | 10/11/2021 |
1.0.0-beta1 | 337 | 9/29/2021 |
- [Add support for Xunit TestFrameworkAttribute attribute](https://github.com/akkadotnet/Akka.MultiNodeTestRunner/pull/116)
In this release we added `MultiNodeTestFramework` to simplify non-parallel test setup. This test
framework is a simple override of the built-in `XunitTestFramework` that disables/ignores the
Xunit `CollectionBehaviorAttribute`, put all test classes from a single assembly into a single test
collection, and disables the test collection parallelization.
To use this test framework, you will need to add an assembly level attribute that tells Xunit to
use this custom test framework instead:
```c#
[assembly: TestFramework("Akka.MultiNode.TestAdapter.MultiNodeTestFramework", "Akka.MultiNode.TestAdapter")]
```
Note that you can also use this assembly level attribute to achieve more or less the same effect:
```c#
[assembly: CollectionBehavior(DisableTestParallelization = true)]
```