PowerShell/test/csharp/README.md

14 lines
499 B
Markdown
Raw Normal View History

2016-03-18 02:20:05 +01:00
# xUnit Tests
2016-03-31 00:42:16 +02:00
These tests are completely Linux specific.
2016-03-18 02:20:05 +01:00
Every test class *must* belong to
`[Collection("AssemblyLoadContext")]`. This ensures that PowerShell's
AssemblyLoadContext is initialized before any other code is executed.
When this is not the case, late initialization fails with
`System.InvalidOperationException : Binding model is already locked
for the AppDomain and cannot be reset.`
Having every class in the same collection is as close to an xUnit
global init hook as can be done.