Namespace Akka.TestKit.Xunit.Attributes
Classes
LocalFactAttribute
This custom XUnit Fact attribute will skip unit tests if the environment variable "XUNIT_SKIP_LOCAL_FACT" exists and is set to the string "true"
Note that the original Skip property takes precedence over this attribute, any unit tests with LocalFactAttribute with its Skip property set will always be skipped, regardless of the environment variable content.
LocalTheoryAttribute
This custom XUnit Fact attribute will skip unit tests if the environment variable "XUNIT_SKIP_LOCAL_THEORY" exists and is set to the string "true"
Note that the original Xunit.v3.IFactAttribute.Skip property takes precedence over this attribute, any unit tests with LocalTheoryAttribute with its Xunit.v3.IFactAttribute.Skip property set will always be skipped, regardless of the environment variable content.
WindowsFactAttribute
This custom XUnit Fact attribute will skip unit tests if the run-time environment is not windows
Note that the original Skip property takes precedence over this attribute, any unit tests with WindowsFactAttribute with its Skip property set will always be skipped, regardless of the environment variable content.