aspnetcore/tools/ProjectTestRunner/HandlerResults/IHandlerResult.cs

16 lines
261 B
C#

using System;
namespace ProjectTestRunner.HandlerResults
{
public interface IHandlerResult
{
string Name { get; }
bool VerificationSuccess { get; }
string FailureMessage { get; }
TimeSpan Duration { get; }
}
}