File: XUnit\ITestCondition.cs | Web Access |
Project: src\test\TestUtilities\TestUtilities.csproj (Microsoft.TestUtilities) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Borrowed from https://github.com/dotnet/aspnetcore/blob/95ed45c67/src/Testing/src/xunit/ namespace Microsoft.TestUtilities; public interface ITestCondition { bool IsMet { get; } string SkipReason { get; } } |