polygone/Library/PackageCache/com.unity.test-framework@1.1.24/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
2021-08-02 05:44:37 -04:00

10 lines
227 B
C#

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