mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
29 lines
738 B
C#
29 lines
738 B
C#
using System;
|
|
using UnityEditor.TestRunner.TestLaunchers;
|
|
using UnityEditor.TestTools.TestRunner.Api;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.TestTools.TestRunner.CommandLineTest
|
|
{
|
|
[Serializable]
|
|
internal class LogSavingCallbacks : ScriptableObject, ICallbacks
|
|
{
|
|
public void RunStarted(ITestAdaptor testsToRun)
|
|
{
|
|
RemotePlayerLogController.instance.StartLogWriters();
|
|
}
|
|
|
|
public virtual void RunFinished(ITestResultAdaptor testResults)
|
|
{
|
|
RemotePlayerLogController.instance.StopLogWriters();
|
|
}
|
|
|
|
public void TestStarted(ITestAdaptor test)
|
|
{
|
|
}
|
|
|
|
public void TestFinished(ITestResultAdaptor result)
|
|
{
|
|
}
|
|
}
|
|
}
|