43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using UnityEditor.TestTools.TestRunner.Api;
 | |
| using UnityEngine;
 | |
| 
 | |
| namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
 | |
| {
 | |
|     [InitializeOnLoad]
 | |
|     internal static class UnityTestProtocolStarter
 | |
|     {
 | |
|         static UnityTestProtocolStarter()
 | |
|         {
 | |
|             var commandLineArgs = Environment.GetCommandLineArgs();
 | |
|             //Ensuring that it is used only when tests are run using UTR.
 | |
|             if (IsEnabled())
 | |
|             {
 | |
|                 var api = ScriptableObject.CreateInstance<TestRunnerApi>();
 | |
|                 var listener = new UnityTestProtocolListener(GetRepositoryPath(commandLineArgs));
 | |
|                 api.RegisterCallbacks(listener);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         internal static bool IsEnabled()
 | |
|         {
 | |
|             var commandLineArgs = Environment.GetCommandLineArgs();
 | |
|             return commandLineArgs.Contains("-automated") && commandLineArgs.Contains("-runTests");
 | |
|         }
 | |
| 
 | |
|         private static string GetRepositoryPath(IReadOnlyList<string> commandLineArgs)
 | |
|         {
 | |
|             for (var i = 0; i < commandLineArgs.Count; i++)
 | |
|             {
 | |
|                 if (commandLineArgs[i].Equals("-projectRepositoryPath"))
 | |
|                 {
 | |
|                     return commandLineArgs[i + 1];
 | |
|                 }
 | |
|             }
 | |
|             return string.Empty;
 | |
|         }
 | |
|     }
 | |
| }
 |