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