Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

PlayerLauncherTestRunSettings.cs 398B

1234567891011121314151617181920
  1. using System;
  2. using UnityEditor.TestTools.TestRunner.Api;
  3. namespace UnityEditor.TestTools.TestRunner
  4. {
  5. internal class PlayerLauncherTestRunSettings : ITestRunSettings
  6. {
  7. public bool buildOnly { set; get; }
  8. public string buildOnlyLocationPath { set; get; }
  9. public void Dispose()
  10. {
  11. }
  12. void ITestRunSettings.Apply()
  13. {
  14. }
  15. }
  16. }