Files
BookRPG/Library/PackageCache/com.unity.test-framework@76560ee600cb/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupWithJobDataAttributeFinder.cs

10 lines
352 B
C#
Raw Normal View History

2026-07-16 21:49:59 +01:00
using UnityEngine.TestTools;
namespace UnityEditor.TestTools.TestRunner
{
internal class PostbuildCleanupWithTestDataAttributeFinder : AttributeFinderBase<IPostbuildCleanupWithTestData, PostBuildCleanupWithTestDataAttribute>
{
public PostbuildCleanupWithTestDataAttributeFinder() : base(attribute => attribute.TargetClass) { }
}
}