Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestCompilerAttribute.cs 492B

12345678910111213141516171819
  1. using System;
  2. using NUnit.Framework;
  3. using NUnit.Framework.Interfaces;
  4. namespace Burst.Compiler.IL.Tests
  5. {
  6. [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
  7. public class WindowsOnlyAttribute : Attribute
  8. {
  9. public WindowsOnlyAttribute(string reason)
  10. {
  11. }
  12. }
  13. [AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
  14. public sealed class TestCompilerAttribute : TestCaseAttribute, ITestBuilder
  15. {
  16. }
  17. }