pjvds / ncqrs

Ncqrs Framework - The CQRS Framework for .NET
Other
541 stars 162 forks source link

Updating latest dependencies #106

Closed sbiaudet closed 8 years ago

sbiaudet commented 8 years ago

Dependencies are outdated. Updating to latest versions.

kadamgreene commented 7 years ago

Hi @sbiaudet,

There is an issue with XUnit, in that it runs multiple tests in parallel which can result in unexpected behaviour (tests failing because the NcqrsEnvironment was altered in parallel by another test).

To fix this problem you need to add:

[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly)]

To the Test projects to keep things sane.