説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }