You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
522 B
C#
21 lines
522 B
C#
1 year ago
|
namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
|
||
|
{
|
||
|
internal class TestFinishedMessage : Message
|
||
|
{
|
||
|
public string name;
|
||
|
public TestState state;
|
||
|
public string message;
|
||
|
public ulong duration; // milliseconds
|
||
|
public ulong durationMicroseconds;
|
||
|
public string stackTrace;
|
||
|
public string fileName;
|
||
|
public int lineNumber;
|
||
|
|
||
|
public TestFinishedMessage()
|
||
|
{
|
||
|
type = "TestStatus";
|
||
|
phase = "End";
|
||
|
}
|
||
|
}
|
||
|
}
|