2016-01-12 23:02:26 +00:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
2016-08-09 18:05:00 +00:00
|
|
|
|
using Microsoft.DotNet.PlatformAbstractions;
|
2016-01-12 23:02:26 +00:00
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tools.Test.Utilities
|
|
|
|
|
{
|
|
|
|
|
public class WindowsOnlyFactAttribute : FactAttribute
|
|
|
|
|
{
|
|
|
|
|
public WindowsOnlyFactAttribute()
|
|
|
|
|
{
|
2016-04-28 23:30:32 +00:00
|
|
|
|
if (RuntimeEnvironment.OperatingSystemPlatform != Platform.Windows)
|
2016-01-12 23:02:26 +00:00
|
|
|
|
{
|
|
|
|
|
this.Skip = "This test requires windows to run";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-04-08 15:51:51 +00:00
|
|
|
|
|
|
|
|
|
public class WindowsOnlyTheoryAttribute : TheoryAttribute
|
|
|
|
|
{
|
|
|
|
|
public WindowsOnlyTheoryAttribute()
|
|
|
|
|
{
|
2016-04-28 23:30:32 +00:00
|
|
|
|
if (RuntimeEnvironment.OperatingSystemPlatform != Platform.Windows)
|
2016-04-08 15:51:51 +00:00
|
|
|
|
{
|
|
|
|
|
this.Skip = "This test requires windows to run";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-01-12 23:02:26 +00:00
|
|
|
|
}
|