Convert tests to use PlatformSpecific attributes
Open
help wanted
testing
triaged
- Dominant language
- C#
- Stars
- 5.5k
- Forks
- 1.5k
- Avg merge
- 1d 13h
- Merged PRs (30d)
- 133
Description
After adopting `xunit.netcore.extensions`, we have a nice way to specify that tests are platform-specific, with the `[PlatformSpecific]` attribute. We should adopt that everywhere and avoid using early-returns like
``` C#
if (NativeMethodsShared.IsUnixLike)
{
return;
}
```
where possible.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.