using System; namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks { internal abstract class FileCleanupVerifierTaskBase : TestTaskBase { internal Func GetAllAssetPathsAction = AssetDatabase.GetAllAssetPaths; protected string[] GetAllFilesInAssetsDirectory() { return GetAllAssetPathsAction(); } } }