forked from BilalY/Rasagar
15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
|
|
namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
|
|
{
|
|
internal abstract class FileCleanupVerifierTaskBase : TestTaskBase
|
|
{
|
|
internal Func<string[]> GetAllAssetPathsAction = AssetDatabase.GetAllAssetPaths;
|
|
|
|
protected string[] GetAllFilesInAssetsDirectory()
|
|
{
|
|
return GetAllAssetPathsAction();
|
|
}
|
|
}
|
|
}
|