A game about forced loneliness, made by TACStudios
1using System;
2using System.Collections;
3
4namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
5{
6 internal class RegisterFilesForCleanupVerificationTask : FileCleanupVerifierTaskBase
7 {
8 public override IEnumerator Execute(TestJobData testJobData)
9 {
10 testJobData.existingFiles = GetAllFilesInAssetsDirectory();
11 yield return null;
12 }
13 }
14}