10 lines
152 B
C#
10 lines
152 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner.Api
|
||
|
{
|
||
|
public interface ITestRunSettings : IDisposable
|
||
|
{
|
||
|
void Apply();
|
||
|
}
|
||
|
}
|