No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }