main
cs 12 lines 484 Bytes
Raw
1 // 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.
2
3 namespace WixInternal.TestSupport.XunitExtensions
4 {
5 using Xunit;
6 using Xunit.Sdk;
7
8 [XunitTestCaseDiscoverer("WixInternal.TestSupport.XunitExtensions.SkippableTheoryDiscoverer", "WixInternal.TestSupport")]
9 public class SkippableTheoryAttribute : TheoryAttribute
10 {
11 }
12 }