No Description
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.

RunSettings.cs 683B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using UnityEditor.TestTools.TestRunner.Api;
  3. namespace UnityEditor.TestTools.TestRunner.CommandLineTest
  4. {
  5. internal class RunSettings : ITestRunSettings
  6. {
  7. private ITestSettings m_TestSettings;
  8. public RunSettings(ITestSettings testSettings)
  9. {
  10. m_TestSettings = testSettings;
  11. }
  12. public void Apply()
  13. {
  14. if (m_TestSettings != null)
  15. {
  16. m_TestSettings.SetupProjectParameters();
  17. }
  18. }
  19. public void Dispose()
  20. {
  21. if (m_TestSettings != null)
  22. {
  23. m_TestSettings.Dispose();
  24. }
  25. }
  26. }
  27. }