mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 04:18:43 +00:00
11 lines
239 B
C#
11 lines
239 B
C#
namespace Cosmos.TestRunner.Core
|
|
{
|
|
public interface IKernelTestResult
|
|
{
|
|
string KernelName { get; }
|
|
RunConfiguration RunConfiguration { get; }
|
|
|
|
bool Result { get; }
|
|
string TestLog { get; }
|
|
}
|
|
}
|