Firstborn/Library/PackageCache/com.unity.mathematics@1.2.6/Tests/TestCompilerAttribute.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

20 lines
492 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
{
}
}