16 lines
425 B
C#
16 lines
425 B
C#
using Microsoft.DotNet.PlatformAbstractions;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.DotNet.Tools.Test.Utilities
|
|
{
|
|
public class WindowsOnlyTheoryAttribute : TheoryAttribute
|
|
{
|
|
public WindowsOnlyTheoryAttribute()
|
|
{
|
|
if (RuntimeEnvironment.OperatingSystemPlatform != Platform.Windows)
|
|
{
|
|
this.Skip = "This test requires windows to run";
|
|
}
|
|
}
|
|
}
|
|
}
|