UnityGame/Library/PackageCache/com.unity.test-framework/UnityEditor.TestRunner/TestLaunchers/Helpers/PrebuildSetupAttributeFinder.cs
2024-10-27 10:53:47 +03: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) {}
}
}