help wantedtestingtriaged
Metriche repository
- Star
- (5062 stelle)
- Metriche merge PR
- (Metriche PR in attesa)
Descrizione
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
if (NativeMethodsShared.IsUnixLike)
{
return;
}
where possible.