Files
GameDevTVObstacleDodge/Library/PackageCache/com.unity.test-framework@d97b7cd61ded/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs

10 lines
291 B
C#

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