using System; using System.Collections.Generic; using NUnit.Framework.Interfaces; using UnityEngine.TestTools; namespace UnityEditor.TestTools.TestRunner { internal interface ITestListCacheData { List platforms { get; } List cachedData { get; } } }