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.

ICustomScriptAssemblyMappingFinder.cs 682B

1234567891011121314151617
  1. using System;
  2. namespace UnityEditor.TestTools.TestRunner.GUI.TestAssets
  3. {
  4. /// <summary>
  5. /// Provides mapping information from folder paths to their corresponding Custom Script Assembly scope.
  6. /// </summary>
  7. internal interface ICustomScriptAssemblyMappingFinder
  8. {
  9. /// <summary>
  10. /// Finds the Custom Script Assembly associated with the provided folder path.
  11. /// </summary>
  12. /// <param name="folderPath">The folder path to check.</param>
  13. /// <returns>The associated <see cref="ICustomScriptAssembly" />; null if none.</returns>
  14. ICustomScriptAssembly FindCustomScriptAssemblyFromFolderPath(string folderPath);
  15. }
  16. }