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.
29 lines
738 B
29 lines
738 B
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) |
|
{ |
|
} |
|
} |
|
}
|
|
|