mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
29 lines
674 B
C#
29 lines
674 B
C#
using UnityEditor.TestTools.TestRunner.Api;
|
|
|
|
namespace UnityEditor.TestTools.TestRunner.CommandLineTest
|
|
{
|
|
internal class RunSettings : ITestRunSettings
|
|
{
|
|
private ITestSettings m_TestSettings;
|
|
public RunSettings(ITestSettings testSettings)
|
|
{
|
|
this.m_TestSettings = testSettings;
|
|
}
|
|
|
|
public void Apply()
|
|
{
|
|
if (m_TestSettings != null)
|
|
{
|
|
m_TestSettings.SetupProjectParameters();
|
|
}
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (m_TestSettings != null)
|
|
{
|
|
m_TestSettings.Dispose();
|
|
}
|
|
}
|
|
}
|
|
}
|