Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IAsyncTestAssemblyBuilder.cs 400B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Reflection;
  4. using NUnit.Framework.Api;
  5. using NUnit.Framework.Interfaces;
  6. namespace UnityEngine.TestTools.NUnitExtensions
  7. {
  8. internal interface IAsyncTestAssemblyBuilder : ITestAssemblyBuilder
  9. {
  10. IEnumerator<ITest> BuildAsync(Assembly[] assemblies, TestPlatform[] testPlatforms, IDictionary<string, object> options);
  11. }
  12. }