説明なし
選択できるのは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. }