WuhuIslandTesting/Library/PackageCache/com.unity.test-framework@1.1.31/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
2025-01-07 02:06:59 +01:00

10 lines
217 B
C#

using NUnit.Framework.Interfaces;
namespace UnityEngine.TestTools.Utils
{
internal interface ITestAssemblyProvider
{
ITest GetTestsWithNUnit();
IAssemblyWrapper[] GetUserAssemblies();
}
}