Attribute.cs 227 B

12345678910
  1. using System;
  2. using NUnit.Framework;
  3. namespace Unity.RenderStreaming.RuntimeTest
  4. {
  5. [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
  6. internal class LongRunningAttribute : CategoryAttribute
  7. {
  8. }
  9. }