untangle-puzzlegame/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs
2025-04-17 17:33:08 -04:00

11 lines
305 B
C#

using System;
using UnityEngine.TestTools;
namespace UnityEditor.TestTools.TestRunner
{
internal class PrebuildSetupAttributeFinder : AttributeFinderBase<IPrebuildSetup, PrebuildSetupAttribute>
{
public PrebuildSetupAttributeFinder() : base(attribute => attribute.TargetClass) {}
}
}