RegisterFilesForCleanupVerificationTask.cs 380 B

12345678910111213
  1. using System.Collections;
  2. namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
  3. {
  4. internal class RegisterFilesForCleanupVerificationTask : FileCleanupVerifierTaskBase
  5. {
  6. public override IEnumerator Execute(TestJobData testJobData)
  7. {
  8. testJobData.existingFiles = GetAllFilesInAssetsDirectory();
  9. yield return null;
  10. }
  11. }
  12. }