Cosmos/Tests/Cosmos.TestRunner.Core/IKernelTestResult.cs
2018-07-23 00:22:05 +01:00

11 lines
239 B
C#

namespace Cosmos.TestRunner.Core
{
public interface IKernelTestResult
{
string KernelName { get; }
RunConfiguration RunConfiguration { get; }
bool Result { get; }
string TestLog { get; }
}
}