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

20 lines
663 B
C#

using System.Collections.Generic;
using NUnit.Framework.Interfaces;
namespace UnityEngine.TestTools
{
/// <summary>
/// Represents a test run configuration. This record holds information about the test run environment and the tests to be executed.
/// </summary>
/// <param name="TestMode">
/// The Test Mode for this test run.
/// </param>
/// <param name="TestPlatform">
/// The Test Platform for this test run.
/// </param>
/// <param name="TestList">
/// The list of tests to be executed.
/// </param>
public record TestData(TestMode TestMode, RuntimePlatform TestPlatform, IEnumerable<ITest> TestList);
}