ITestRunSettings.cs 152 B

123456789
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.Api
  3. {
  4. public interface ITestRunSettings : IDisposable
  5. {
  6. void Apply();
  7. }
  8. }