You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
1 year ago
|
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();
|
||
|
if (commandLineArgs.Contains("-automated") && commandLineArgs.Contains("-runTests")) // wanna have it only for utr run
|
||
|
{
|
||
|
var api = ScriptableObject.CreateInstance<TestRunnerApi>();
|
||
|
var listener = new UnityTestProtocolListener(GetRepositoryPath(commandLineArgs));
|
||
|
api.RegisterCallbacks(listener);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|