skyscraper8/skyscraper8.Tests/VoileOnlineTestResult.cs
feyris-tan b78520e2fe
All checks were successful
🚀 Pack skyscraper8 / make-zip (push) Successful in 1m26s
Renamed te skyscraper8.Tests.NUnit project to skyscraper8.Tests
2026-06-20 16:06:14 +02:00

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; }
}