A game about forced loneliness, made by TACStudios
1using System;
2
3namespace UnityEditor.TestTools.TestRunner.GUI.TestAssets
4{
5 /// <summary>
6 /// Provides Test Script compilation context associated with project folder paths.
7 /// </summary>
8 internal interface IFolderPathTestCompilationContextProvider
9 {
10 /// <summary>
11 /// Checks if the provided folder path belongs to a Custom Test Assembly.
12 /// </summary>
13 bool FolderPathBelongsToCustomTestAssembly(string folderPath);
14
15 /// <summary>
16 /// Checks if the provided folder path belongs to an assembly capable of compiling Test Scripts.
17 /// </summary>
18 bool TestScriptWillCompileInFolderPath(string folderPath);
19 }
20}