rimworld-animation-studio/Library/PackageCache/com.unity.mathematics@1.1.0/Tests/TestCompilerAttribute.cs
2022-09-13 00:36:34 -05:00

19 lines
No EOL
491 B
C#

using System;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
namespace Burst.Compiler.IL.Tests
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
public class WindowsOnlyAttribute : Attribute
{
public WindowsOnlyAttribute(string reason)
{
}
}
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true, Inherited = false)]
public sealed class TestCompilerAttribute : TestCaseAttribute, ITestBuilder
{
}
}