File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments