Files
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01:00

21 lines
442 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEditor.PackageManager.ValidationSuite
{
internal interface IValidationTestResult
{
// The test associated to this result
IValidationTest ValidationTest { get; }
TestState TestState { get; }
List<ValidationTestOutput> TestOutput { get; }
DateTime StartTime { get; }
DateTime EndTime { get; }
}
}