summaryrefslogtreecommitdiff
path: root/Library/PackageCache/com.unity.test-framework@1.1.11/UnityEngine.TestRunner/Utils/AssemblyProvider/ITestAssemblyProvider.cs
blob: 29449363ceff7a1782ecaa0c717e75826fd0ca9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using NUnit.Framework.Interfaces;

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