A game about forced loneliness, made by TACStudios
at master 430 B view raw
1using System; 2using System.Collections.Generic; 3using UnityEngine.TestTools; 4using UnityEngine.TestTools.Utils; 5 6namespace UnityEditor.TestTools.TestRunner 7{ 8 internal interface IEditorLoadedTestAssemblyProvider 9 { 10 List<IAssemblyWrapper> GetAssembliesGroupedByType(TestPlatform mode); 11 IEnumerator<IDictionary<TestPlatform, List<IAssemblyWrapper>>> GetAssembliesGroupedByTypeAsync(TestPlatform mode); 12 } 13}