11 lines
253 B
C#
11 lines
253 B
C#
|
using System.Collections;
|
||
|
using NUnit.Framework.Internal;
|
||
|
|
||
|
namespace UnityEngine.TestRunner.NUnitExtensions.Runner
|
||
|
{
|
||
|
internal interface IEnumerableTestMethodCommand
|
||
|
{
|
||
|
IEnumerable ExecuteEnumerable(ITestExecutionContext context);
|
||
|
}
|
||
|
}
|