10 lines
191 B
C#
10 lines
191 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.TestTools.TestRunner
|
||
|
{
|
||
|
internal interface ITestSettingsDeserializer
|
||
|
{
|
||
|
ITestSettings GetSettingsFromJsonFile(string jsonFilePath);
|
||
|
}
|
||
|
}
|