pixelgon/Library/PackageCache/com.unity.test-framework@1.1.3/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
2020-06-05 11:54:36 -07:00

10 lines
217 B
C#

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