You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
446 B
29 lines
446 B
using System; |
|
using System.Collections.Generic; |
|
using UnityEngine; |
|
using UnityTest; |
|
|
|
public interface ITestResult |
|
{ |
|
TestResultState ResultState { get; } |
|
|
|
string Message { get; } |
|
|
|
string Logs { get; } |
|
|
|
bool Executed { get; } |
|
|
|
string Name { get; } |
|
|
|
string FullName { get; } |
|
|
|
string Id { get; } |
|
|
|
bool IsSuccess { get; } |
|
|
|
double Duration { get; } |
|
|
|
string StackTrace { get; } |
|
|
|
bool IsIgnored { get; } |
|
}
|
|
|