TurnBasedStrategyCourse/Library/PackageCache/com.unity.test-framework@1.3.4/UnityEditor.TestRunner/TestLaunchers/PrebuildSetupAttributeFinde...

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) {}
}
}