2023-06-21 13:28:15 -04:00
|
|
|
using UnityEngine.TestTools;
|
|
|
|
|
|
|
|
namespace UnityEditor.TestTools.TestRunner
|
|
|
|
{
|
|
|
|
internal class PrebuildSetupAttributeFinder : AttributeFinderBase<IPrebuildSetup, PrebuildSetupAttribute>
|
|
|
|
{
|
|
|
|
public PrebuildSetupAttributeFinder() : base((attribute) => attribute.TargetClass) {}
|
|
|
|
}
|
|
|
|
}
|