UnitySetUpAttribute.cs 186 B

12345678910
  1. using System;
  2. using NUnit.Framework;
  3. namespace UnityEngine.TestTools
  4. {
  5. [AttributeUsage(AttributeTargets.Method)]
  6. public class UnitySetUpAttribute : NUnitAttribute
  7. {
  8. }
  9. }