17 lines
489 B
C#
17 lines
489 B
C#
using NUnit.Framework.Interfaces;
|
|
|
|
namespace skyscraper8.Tests.NUnit;
|
|
|
|
public class VoileOnlineTestResult
|
|
{
|
|
public string? ClassName { get; set; }
|
|
public string? MethodName { get; set; }
|
|
public long TimeTaken { get; set; }
|
|
public string LogOutput { get; set; }
|
|
public int AssertionCount { get; set; }
|
|
public long TestId { get; set; }
|
|
public string OutcomeLabel { get; set; }
|
|
public int OutcomeSite { get; set; }
|
|
public int OutcomeStatus { get; set; }
|
|
}
|