bea2dce063
test
23 lines
648 B
C#
23 lines
648 B
C#
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();
|
|
}
|
|
}
|
|
}
|