Files
LowPolyBattleSim/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/GUI/TestAssets/IFolderPathTestCompilationContextProvider.cs
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01:00

21 lines
694 B
C#

using System;
namespace UnityEditor.TestTools.TestRunner.GUI.TestAssets
{
/// <summary>
/// Provides Test Script compilation context associated with project folder paths.
/// </summary>
internal interface IFolderPathTestCompilationContextProvider
{
/// <summary>
/// Checks if the provided folder path belongs to a Custom Test Assembly.
/// </summary>
bool FolderPathBelongsToCustomTestAssembly(string folderPath);
/// <summary>
/// Checks if the provided folder path belongs to an assembly capable of compiling Test Scripts.
/// </summary>
bool TestScriptWillCompileInFolderPath(string folderPath);
}
}