Maze / Library /PackageCache /com.unity.test-framework@1.1.33 /UnityEditor.TestRunner /TestRun /Tasks /PrebuildSetupTask.cs
| using System; | |
| using System.Collections; | |
| using NUnit.Framework.Interfaces; | |
| using UnityEngine; | |
| using UnityEngine.TestTools; | |
| namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks | |
| { | |
| internal class PrebuildSetupTask : BuildActionTaskBase<IPrebuildSetup> | |
| { | |
| public PrebuildSetupTask() : base(new PrebuildSetupAttributeFinder()) | |
| { | |
| } | |
| protected override void Action(IPrebuildSetup target) | |
| { | |
| target.Setup(); | |
| } | |
| } | |
| } |