Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/Unity/Testproject/Library/PackageCache/com.unity.test-framework@1.1.27/UnityEngine.TestRunner/NUnitExtensions/IAsyncTestAssemblyBuilder.cs
2022-11-12 13:10:03 +01:00

12 lines
385 B
C#

using System.Collections.Generic;
using System.Reflection;
using NUnit.Framework.Api;
using NUnit.Framework.Interfaces;
namespace UnityEngine.TestTools.NUnitExtensions
{
internal interface IAsyncTestAssemblyBuilder : ITestAssemblyBuilder
{
IEnumerator<ITest> BuildAsync(Assembly[] assemblies, TestPlatform[] testPlatforms, IDictionary<string, object> options);
}
}