Practice_Unity/Library/PackageCache/com.unity.test-framework@d97b7cd61ded/UnityEditor.TestRunner/UnityTestProtocol/TestRunData.cs
2025-10-15 17:21:20 +09:00

32 lines
744 B
C#

using System;
namespace UnityEditor.TestRunner.UnityTestProtocol
{
/// <summary>
/// Represents the data for a test run.
/// </summary>
[Serializable]
public class TestRunData
{
/// <summary>
/// The name of the test suite.
/// </summary>
public string SuiteName;
/// <summary>
/// The names of the tests in the fixture.
/// </summary>
public string[] TestsInFixture;
/// <summary>
/// The duration of the one-time setup.
/// </summary>
public long OneTimeSetUpDuration;
/// <summary>
/// The duration of the one-time teardown.
/// </summary>
public long OneTimeTearDownDuration;
}
}