File: xunit\WcfTheoryAttribute.cs | Web Access |
Project: src\src\System.Private.ServiceModel\tests\Common\Infrastructure\Infrastructure.Common.csproj (Infrastructure.Common) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Xunit; using Xunit.Sdk; namespace Infrastructure.Common { [XunitTestCaseDiscoverer("Infrastructure.Common.WcfTheoryDiscoverer", "Infrastructure.Common")] [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] public class WcfTheoryAttribute : TheoryAttribute { } } |