Files
yahtzee/Library/PackageCache/com.unity.test-framework@1.1.14/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
2020-07-21 15:43:56 +09:00

11 lines
217 B
C#

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