暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IFolderPathTestCompilationContextProvider.cs 694B

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