Skip to content

Commit 25499db

Browse files
authored
Update RELEASE_NOTES.md for 1.1.0-beta2 release (#117)
1 parent 350d87c commit 25499db

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

RELEASE_NOTES.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
#### 1.1.0-beta2 December 23 2019 ####
2+
- [Add support for Xunit TestFrameworkAttribute attribute](https://github.com/akkadotnet/Akka.MultiNodeTestRunner/pull/116)
3+
4+
In this release we added `MultiNodeTestFramework` to simplify non-parallel test setup. This test
5+
framework is a simple override of the built-in `XunitTestFramework` that disables/ignores the
6+
Xunit `CollectionBehaviorAttribute`, put all test classes from a single assembly into a single test
7+
collection, and disables the test collection parallelization.
8+
9+
To use this test framework, you will need to add an assembly level attribute that tells Xunit to
10+
use this custom test framework instead:
11+
12+
```c#
13+
[assembly: TestFramework("Akka.MultiNode.TestAdapter.MultiNodeTestFramework", "Akka.MultiNode.TestAdapter")]
14+
```
15+
16+
Note that you can also use this assembly level attribute to achieve more or less the same effect:
17+
```c#
18+
[assembly: CollectionBehavior(DisableTestParallelization = true)]
19+
```
20+
121
#### 1.1.0-beta1 October 20 2019 ####
222

323
- [Switch to pure Xunit implementation](https://github.com/akkadotnet/Akka.MultiNodeTestRunner/pull/105)

0 commit comments

Comments
 (0)