blob: ba4678c8fd4723ea586109a1c457723f106b1906 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixInternal.TestSupport.XunitExtensions
{
using Xunit;
using Xunit.Sdk;
// https://github.com/xunit/samples.xunit/blob/5dc1d35a63c3394a8678ac466b882576a70f56f6/DynamicSkipExample
[XunitTestCaseDiscoverer("WixInternal.TestSupport.XunitExtensions.SkippableFactDiscoverer", "WixInternal.TestSupport")]
public class SkippableFactAttribute : FactAttribute
{
}
}
|