study/first_study/Library/PackageCache/com.unity.test-framework@0b7a23ab2e1d/UnityEngine.TestRunner/Utils/TestData.cs

20 lines
663 B
C#
Raw Normal View History

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);
}