PO/Library/PackageCache/com.unity.test-framework@1..../UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs

11 lines
217 B
C#

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