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.
22 lines
648 B
22 lines
648 B
using System; |
|
using UnityEditor.Networking.PlayerConnection; |
|
using UnityEngine; |
|
using UnityEngine.Networking.PlayerConnection; |
|
using UnityEngine.TestRunner.TestLaunchers; |
|
|
|
namespace UnityEditor.TestTools.TestRunner |
|
{ |
|
[Serializable] |
|
internal class RemoteTestResultReciever |
|
{ |
|
public void RunStarted(MessageEventArgs messageEventArgs) |
|
{ |
|
} |
|
|
|
public void RunFinished(MessageEventArgs messageEventArgs) |
|
{ |
|
EditorConnection.instance.Send(PlayerConnectionMessageIds.quitPlayerMessageId, null, messageEventArgs.playerId); |
|
EditorConnection.instance.DisconnectAll(); |
|
} |
|
} |
|
}
|
|
|